From 08345afa062be5a2d5074912aef08c2512c4a065 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Fri, 12 Oct 2012 07:17:31 -0700 Subject: [PATCH] typo --- examples/tickers/tickers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tickers/tickers.go b/examples/tickers/tickers.go index bb716ab..0d8cbd2 100644 --- a/examples/tickers/tickers.go +++ b/examples/tickers/tickers.go @@ -12,7 +12,7 @@ import "fmt" func main() { // Tickers use a similar mechanism to timers: a - // chanel that is sent values. Here we'll use the + // channel that is sent values. Here we'll use the // `range` builtin on the channel to iterate over // the values as they arrive every 500ms. ticker := time.NewTicker(time.Millisecond * 500)