From adb3b863c9c6488b4a3f8d346635940761d79ab1 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Sun, 11 Apr 2010 23:33:25 +1000 Subject: [PATCH] time: fix comment typo R=r CC=golang-dev https://golang.org/cl/811044 --- src/pkg/time/tick.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/time/tick.go b/src/pkg/time/tick.go index 885a290bcfa..05023d4d00b 100644 --- a/src/pkg/time/tick.go +++ b/src/pkg/time/tick.go @@ -156,7 +156,7 @@ func tickerLoop() { } } -// Ticker returns a new Ticker containing a channel that will +// NewTicker returns a new Ticker containing a channel that will // send the time, in nanoseconds, every ns nanoseconds. It adjusts the // intervals to make up for pauses in delivery of the ticks. func NewTicker(ns int64) *Ticker {