From 6cf040802b2442d07a3f801c9dc9624969098a4c Mon Sep 17 00:00:00 2001 From: Yan Feng Date: Thu, 16 Apr 2015 10:56:15 -0400 Subject: [PATCH] Fix a typo in docker/daemon/state.go Signed-off-by: Yan Feng Upstream-commit: 7e01ecc119ea3871058309a47a3f9cbf2a9483dd Component: engine --- components/engine/daemon/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/daemon/state.go b/components/engine/daemon/state.go index 6387e6fc53..4119d0e6cd 100644 --- a/components/engine/daemon/state.go +++ b/components/engine/daemon/state.go @@ -183,7 +183,7 @@ func (s *State) setStopped(exitStatus *execdriver.ExitStatus) { s.waitChan = make(chan struct{}) } -// SetRestarting is when docker hanldes the auto restart of containers when they are +// SetRestarting is when docker handles the auto restart of containers when they are // in the middle of a stop and being restarted again func (s *State) SetRestarting(exitStatus *execdriver.ExitStatus) { s.Lock()