diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-12-21 10:27:54 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2018-12-21 10:27:54 -0500 |
commit | 4d1326240501312d60bce184db7f63d9e5cfae49 (patch) | |
tree | 8ca70973a38611a9c9850c05c0ffc55f18b56a60 /cmd/podman/create.go | |
parent | 664076c259c8751483fbcbe57ab5273d9f3e5c8c (diff) | |
download | podman-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.go | 2 |
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") |