diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-04 07:35:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 07:35:42 +0000 |
commit | a406b950e4f8cf64bdd2c1e03a8480d4b5f97226 (patch) | |
tree | 2f9f1d8136f678db8eac44b21c454317bd1615ef /libpod | |
parent | b0abfc3cf624098525c7a4f7e1b7b6b59ad3156d (diff) | |
parent | 24fcfb5d9e1a4c92f386cd34b5c1f44a2676d116 (diff) | |
download | podman-a406b950e4f8cf64bdd2c1e03a8480d4b5f97226.tar.gz podman-a406b950e4f8cf64bdd2c1e03a8480d4b5f97226.tar.bz2 podman-a406b950e4f8cf64bdd2c1e03a8480d4b5f97226.zip |
Merge pull request #14807 from eriksjolund/fix_read_only_spelling
[CI:DOCS] Fix spelling "read only" -> "read-only"
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container.go b/libpod/container.go index 3a15cfbdb..0619471b4 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -1118,7 +1118,7 @@ func (c *Container) IsInitCtr() bool { return len(c.config.InitContainerType) > 0 } -// IsReadOnly returns whether the container is running in read only mode +// IsReadOnly returns whether the container is running in read-only mode func (c *Container) IsReadOnly() bool { return c.config.Spec.Root.Readonly } |