From ced73947d97af65a9cd42498e8ce314f66d7a223 Mon Sep 17 00:00:00 2001 From: Hu Tao Date: Fri, 5 Sep 2014 04:22:32 -0400 Subject: [PATCH] typo fix: immediatly -> immediately Signed-off-by: Hu Tao Upstream-commit: fcc7ec8073311cf9d150179895e5d0a32f4cb2e7 Component: engine --- components/engine/daemon/state.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/engine/daemon/state.go b/components/engine/daemon/state.go index a5557cff29..05e0af2b94 100644 --- a/components/engine/daemon/state.go +++ b/components/engine/daemon/state.go @@ -60,7 +60,7 @@ func wait(waitChan <-chan struct{}, timeout time.Duration) error { } // WaitRunning waits until state is running. If state already running it returns -// immediatly. If you want wait forever you must supply negative timeout. +// immediately. If you want wait forever you must supply negative timeout. // Returns pid, that was passed to SetRunning func (s *State) WaitRunning(timeout time.Duration) (int, error) { s.Lock() @@ -78,7 +78,7 @@ func (s *State) WaitRunning(timeout time.Duration) (int, error) { } // WaitStop waits until state is stopped. If state already stopped it returns -// immediatly. If you want wait forever you must supply negative timeout. +// immediately. If you want wait forever you must supply negative timeout. // Returns exit code, that was passed to SetStopped func (s *State) WaitStop(timeout time.Duration) (int, error) { s.Lock()