From: Ian Lance Taylor Date: Sat, 29 Aug 2015 00:30:59 +0000 (-0700) Subject: time: fix 400 year offset in comment X-Git-Tag: go1.6beta1~1237 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d93f3b5e31c2d95c6237d72b089576a50dacea79;p=gostls13.git time: fix 400 year offset in comment Change-Id: I33c2c222ea884d9ff57800ea5185644b5d8e591a Reviewed-on: https://go-review.googlesource.com/14034 Reviewed-by: Minux Ma --- diff --git a/src/time/time.go b/src/time/time.go index c78c80c43b..ef4ba5842d 100644 --- a/src/time/time.go +++ b/src/time/time.go @@ -180,7 +180,7 @@ func (d Weekday) String() string { return days[d] } // everywhere. // // The calendar runs on an exact 400 year cycle: a 400-year calendar -// printed for 1970-2469 will apply as well to 2470-2869. Even the days +// printed for 1970-2469 will apply as well to 2370-2769. Even the days // of the week match up. It simplifies the computations to choose the // cycle boundaries so that the exceptional years are always delayed as // long as possible. That means choosing a year equal to 1 mod 400, so