aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/create.go
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 /cmd/podman/create.go
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 'cmd/podman/create.go')
-rw-r--r--cmd/podman/create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/create.go b/cmd/podman/create.go
index 2b31a6423..1425892cc 100644
--- a/cmd/podman/create.go
+++ b/cmd/podman/create.go
@@ -462,7 +462,7 @@ func parseCreateOpts(ctx context.Context, c *cli.Context, runtime *libpod.Runtim
tty := c.Bool("tty")
if c.Bool("detach") && c.Bool("rm") {
- return nil, errors.Errorf("--rm and --detach can not be specified together")
+ return nil, errors.Errorf("--rm and --detach cannot be specified together")
}
if c.Int64("cpu-period") != 0 && c.Float64("cpus") > 0 {
return nil, errors.Errorf("--cpu-period and --cpus cannot be set together")