summaryrefslogtreecommitdiff
path: root/pkg/namespaces
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-12-21 10:27:54 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2018-12-21 10:27:54 -0500
commit4d1326240501312d60bce184db7f63d9e5cfae49 (patch)
tree8ca70973a38611a9c9850c05c0ffc55f18b56a60 /pkg/namespaces
parent664076c259c8751483fbcbe57ab5273d9f3e5c8c (diff)
downloadpodman-4d1326240501312d60bce184db7f63d9e5cfae49.tar.gz
podman-4d1326240501312d60bce184db7f63d9e5cfae49.tar.bz2
podman-4d1326240501312d60bce184db7f63d9e5cfae49.zip
Change all 'can not' to 'cannot' for proper usage
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/namespaces')
-rw-r--r--pkg/namespaces/namespaces.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/namespaces/namespaces.go b/pkg/namespaces/namespaces.go
index 832efd554..11b47fec4 100644
--- a/pkg/namespaces/namespaces.go
+++ b/pkg/namespaces/namespaces.go
@@ -84,7 +84,7 @@ func (n UTSMode) Valid() bool {
// IpcMode represents the container ipc stack.
type IpcMode string
-// IsPrivate indicates whether the container uses its own private ipc namespace which can not be shared.
+// IsPrivate indicates whether the container uses its own private ipc namespace which cannot be shared.
func (n IpcMode) IsPrivate() bool {
return n == "private"
}