From f85e7839c383ebd9537de39548ea6fe844bc8bee Mon Sep 17 00:00:00 2001 From: Zak Johnson Date: Wed, 22 Jan 2014 15:36:22 -0800 Subject: [PATCH] Fix comment typos in signals.go --- examples/signals/signals.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/signals/signals.go b/examples/signals/signals.go index 6eed21a..b664ba1 100644 --- a/examples/signals/signals.go +++ b/examples/signals/signals.go @@ -1,4 +1,4 @@ -// Sometines we'd like our Go programs to intelligently +// Sometimes we'd like our Go programs to intelligently // handle [Unix signals](http://en.wikipedia.org/wiki/Unix_signal). // For example, we might want a server to gracefully // shutdown when it receives a `SIGTERM`, or a command-line @@ -17,7 +17,7 @@ func main() { // Go signal notification works by sending `os.Signal` // values on a channel. We'll create a channel to // receive these notifications (we'll also make one to - // notify us when the program can exit.) + // notify us when the program can exit). sigs := make(chan os.Signal, 1) done := make(chan bool, 1)