diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-06-14 13:51:11 -0400 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-06-14 13:51:17 -0400 |
commit | b7cbf93336af8e23f985c7ed1fa7005f8d9d309a (patch) | |
tree | 8dc22221613e2b1ef1734461f7ad5e9a15edb1e0 /docs | |
parent | 4c849a79ead9447826af650f1511a2ae9c42b50a (diff) | |
download | podman-b7cbf93336af8e23f985c7ed1fa7005f8d9d309a.tar.gz podman-b7cbf93336af8e23f985c7ed1fa7005f8d9d309a.tar.bz2 podman-b7cbf93336af8e23f985c7ed1fa7005f8d9d309a.zip |
Change container command to contained
A quick follow up to #3306 to touch up two more
'container command' to 'contained command' to match the
rest of the doc suite.
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman.1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/podman.1.md b/docs/podman.1.md index 1696fe464..84e695d23 100644 --- a/docs/podman.1.md +++ b/docs/podman.1.md @@ -106,13 +106,13 @@ the exit codes follow the `chroot` standard, see below: Error: unknown flag: --foo 125 -**_126_** if executing a **_container command_** and the the **_command_** cannot be invoked +**_126_** if executing a **_contained command_** and the the **_command_** cannot be invoked $ podman run busybox /etc; echo $? Error: container_linux.go:346: starting container process caused "exec: \"/etc\": permission denied": OCI runtime error 126 -**_127_** if executing a **_container command_** and the the **_command_** cannot be found +**_127_** if executing a **_contained command_** and the the **_command_** cannot be found $ podman run busybox foo; echo $? Error: container_linux.go:346: starting container process caused "exec: \"foo\": executable file not found in $PATH": OCI runtime error 127 |