From ab11d605556749e56e9dc5b4b071375765ad60bf Mon Sep 17 00:00:00 2001 From: Yan Feng Date: Thu, 9 Apr 2015 11:46:09 -0400 Subject: [PATCH] Fix a typo in docker/daemon/execdriver/native/exec.go Signed-off-by: Yan Feng --- daemon/execdriver/native/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/execdriver/native/exec.go b/daemon/execdriver/native/exec.go index af6dcd2adb..2edd3313b1 100644 --- a/daemon/execdriver/native/exec.go +++ b/daemon/execdriver/native/exec.go @@ -14,7 +14,7 @@ import ( "github.com/docker/libcontainer/utils" ) -// TODO(vishh): Add support for running in priviledged mode and running as a different user. +// TODO(vishh): Add support for running in privileged mode and running as a different user. func (d *driver) Exec(c *execdriver.Command, processConfig *execdriver.ProcessConfig, pipes *execdriver.Pipes, startCallback execdriver.StartCallback) (int, error) { active := d.activeContainers[c.ID] if active == nil {