From 394722ec935a03e9ada90e0fa20da8c917400b31 Mon Sep 17 00:00:00 2001 From: Liu Hua Date: Thu, 26 Feb 2015 19:03:44 +0800 Subject: [PATCH] fix a minor typo in daemon/exec.go Signed-off-by: Liu Hua Upstream-commit: 5b794c413a147dbc06f76caa6f2c32d1f4b1f2ce Component: engine --- components/engine/daemon/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/daemon/exec.go b/components/engine/daemon/exec.go index bee87c71ad..3af40ac014 100644 --- a/components/engine/daemon/exec.go +++ b/components/engine/daemon/exec.go @@ -74,7 +74,7 @@ func (execConfig *execConfig) Resize(h, w int) error { } func (d *Daemon) registerExecCommand(execConfig *execConfig) { - // Storing execs in container inorder to kill them gracefully whenever the container is stopped or removed. + // Storing execs in container in order to kill them gracefully whenever the container is stopped or removed. execConfig.Container.execCommands.Add(execConfig.ID, execConfig) // Storing execs in daemon for easy access via remote API. d.execCommands.Add(execConfig.ID, execConfig)