summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-04 07:35:42 +0000
committerGitHub <noreply@github.com>2022-07-04 07:35:42 +0000
commita406b950e4f8cf64bdd2c1e03a8480d4b5f97226 (patch)
tree2f9f1d8136f678db8eac44b21c454317bd1615ef /libpod
parentb0abfc3cf624098525c7a4f7e1b7b6b59ad3156d (diff)
parent24fcfb5d9e1a4c92f386cd34b5c1f44a2676d116 (diff)
downloadpodman-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.go2
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
}