From ebaf0674d231b4d9b7dc0bb7831340194080edfc Mon Sep 17 00:00:00 2001 From: Naitik Shah Date: Tue, 20 Aug 2013 16:48:43 -0700 Subject: [PATCH] spelling nit --- grace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grace.go b/grace.go index 3d9255d..6a77d50 100644 --- a/grace.go +++ b/grace.go @@ -107,7 +107,7 @@ func (l *listener) Accept() (net.Conn, error) { // We use SetDeadline above to trigger Accept to return when we're trying // to handoff to a child as part of our restart process. In this scenario - // we want to tread the timeout the same as a Close. + // we want to treat the timeout the same as a Close. if nerr, ok := err.(net.Error); ok && nerr.Timeout() { l.closedMutex.RLock() if l.closed {