From: Brad Fitzpatrick Date: Thu, 6 Oct 2016 18:22:19 +0000 (+0000) Subject: time: document that calendrical calculations are with no leap seconds X-Git-Tag: go1.8beta1~989 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1c09b4dde645b63b34673d0b2c93f4371f7f19df;p=gostls13.git time: document that calendrical calculations are with no leap seconds Fixes #15247 Change-Id: I942fb2eacd1b54bab66cc147a6b047a3ffce0b84 Reviewed-on: https://go-review.googlesource.com/30595 Reviewed-by: Russ Cox --- diff --git a/src/time/time.go b/src/time/time.go index 8f16986044..f04fba85fa 100644 --- a/src/time/time.go +++ b/src/time/time.go @@ -4,7 +4,8 @@ // Package time provides functionality for measuring and displaying time. // -// The calendrical calculations always assume a Gregorian calendar. +// The calendrical calculations always assume a Gregorian calendar, with +// no leap seconds. package time import "errors"