From: Andrew Gerrand Date: Sun, 11 Apr 2010 13:33:25 +0000 (+1000) Subject: time: fix comment typo X-Git-Tag: weekly.2010-04-13~24 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=adb3b863c9c6488b4a3f8d346635940761d79ab1;p=gostls13.git time: fix comment typo R=r CC=golang-dev https://golang.org/cl/811044 --- diff --git a/src/pkg/time/tick.go b/src/pkg/time/tick.go index 885a290bcf..05023d4d00 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 {