diff options
author | Jhon Honce <jhonce@redhat.com> | 2019-03-13 14:16:37 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2019-03-13 14:16:37 -0700 |
commit | f29a765573ecd1ad31d50fc51ddf696da7d68705 (patch) | |
tree | a16410ffcd5d27d199c9df294764f0bffcb78f98 /utils | |
parent | 22fc5a3e57566326b96f465e69e5566598666841 (diff) | |
download | podman-f29a765573ecd1ad31d50fc51ddf696da7d68705.tar.gz podman-f29a765573ecd1ad31d50fc51ddf696da7d68705.tar.bz2 podman-f29a765573ecd1ad31d50fc51ddf696da7d68705.zip |
Corrected detach man pages and code comments
* Updated documentation to match code
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/utils.go b/utils/utils.go index 33b0eb1c5..c195daa5d 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -93,7 +93,7 @@ var ErrDetach = errors.New("detached from container") // CopyDetachable is similar to io.Copy but support a detach key sequence to break out. func CopyDetachable(dst io.Writer, src io.Reader, keys []byte) (written int64, err error) { if len(keys) == 0 { - // Default keys : ctrl-p ctrl-q + // Default keys : ctrl-p,ctrl-q keys = []byte{16, 17} } |