From 1c09b4dde645b63b34673d0b2c93f4371f7f19df Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 6 Oct 2016 18:22:19 +0000 Subject: [PATCH] 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 --- src/time/time.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- 2.50.0