From f29a765573ecd1ad31d50fc51ddf696da7d68705 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Wed, 13 Mar 2019 14:16:37 -0700 Subject: Corrected detach man pages and code comments * Updated documentation to match code Signed-off-by: Jhon Honce --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/utils.go') 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} } -- cgit v1.2.3-54-g00ecf