Browse code

fix a minor typo in daemon/exec.go

Signed-off-by: Liu Hua <sdu.liu@huawei.com>

Liu Hua authored on 2015/02/26 20:03:44
Showing 1 changed files
... ...
@@ -74,7 +74,7 @@ func (execConfig *execConfig) Resize(h, w int) error {
74 74
 }
75 75
 
76 76
 func (d *Daemon) registerExecCommand(execConfig *execConfig) {
77
-	// Storing execs in container inorder to kill them gracefully whenever the container is stopped or removed.
77
+	// Storing execs in container in order to kill them gracefully whenever the container is stopped or removed.
78 78
 	execConfig.Container.execCommands.Add(execConfig.ID, execConfig)
79 79
 	// Storing execs in daemon for easy access via remote API.
80 80
 	d.execCommands.Add(execConfig.ID, execConfig)