]> Cypherpunks repositories - gostls13.git/commitdiff
time: fix spacing in comment.
authorRob Pike <r@golang.org>
Thu, 23 Aug 2012 04:30:18 +0000 (21:30 -0700)
committerRob Pike <r@golang.org>
Thu, 23 Aug 2012 04:30:18 +0000 (21:30 -0700)
No semantic change.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6475050

src/pkg/time/time.go

index 1eb17858a8c68bd08a5e556b78466194e81b77e8..011a1e31e31ca40ddcdeb78cf2ca4d4c9e69bc13 100644 (file)
@@ -412,7 +412,7 @@ func (t Time) Nanosecond() int {
        return int(t.nsec)
 }
 
-// YearDay returns the day of the year specified by t, in the range [1, 365] for non-leap years,
+// YearDay returns the day of the year specified by t, in the range [1,365] for non-leap years,
 // and [1,366] in leap years.
 func (t Time) YearDay() int {
        _, _, _, yday := t.date(false)