From 65e1fc7f1974ad49679a91046154083d9a3a9d6c Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 3 Oct 2023 22:19:42 +0200 Subject: [PATCH] time: fix Time godoc The additional empty line was inadvertently introduced by CL 526676, causing only part of the Time godoc to be rendered on pkg.go.dev. Change-Id: I868315752eb160ebaab227c8b5369054c557cb7e Reviewed-on: https://go-review.googlesource.com/c/go/+/531877 Reviewed-by: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov LUCI-TryBot-Result: Go LUCI Auto-Submit: Dmitri Shuralyov --- src/time/time.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/time/time.go b/src/time/time.go index 1db9d3768ed..9d4c6e919e5 100644 --- a/src/time/time.go +++ b/src/time/time.go @@ -113,7 +113,6 @@ import ( // Time with a specific Location. Changing the Location of a Time value with // these methods does not change the actual instant it represents, only the time // zone in which to interpret it. - // // Representations of a Time value saved by the GobEncode, MarshalBinary, // MarshalJSON, and MarshalText methods store the Time.Location's offset, but not