diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-14 05:49:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-14 05:49:24 -0700 |
commit | 296c61d896002e8d80597e306dc497d6e41cbb92 (patch) | |
tree | f85ca43b48339243ba2fb862b10bfafcddcd06a9 /utils | |
parent | c8dea5f56e96f1a5b4b6564191176913d71bf4f3 (diff) | |
parent | f29a765573ecd1ad31d50fc51ddf696da7d68705 (diff) | |
download | podman-296c61d896002e8d80597e306dc497d6e41cbb92.tar.gz podman-296c61d896002e8d80597e306dc497d6e41cbb92.tar.bz2 podman-296c61d896002e8d80597e306dc497d6e41cbb92.zip |
Merge pull request #2638 from jwhonce/issue/1959
Corrected detach man pages and code comments
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} } |