From: Kevin Burke Date: Thu, 10 Aug 2017 06:00:39 +0000 (-0700) Subject: time: remove extra space in docstring X-Git-Tag: go1.10beta1~1670 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c9f8a6cdd7303b91bbc3e2e6314e7439255b94bf;p=gostls13.git time: remove extra space in docstring Probably went unnoticed because HTML normalizes multiple space characters into one, unless you explicitly ask for them with  . Change-Id: I3f97b24a111da3f0f28894f1246388018beb084e Reviewed-on: https://go-review.googlesource.com/54570 Reviewed-by: Emmanuel Odeke Reviewed-by: Rob Pike --- diff --git a/src/time/format.go b/src/time/format.go index 8c16e873f6..b0f8806984 100644 --- a/src/time/format.go +++ b/src/time/format.go @@ -732,7 +732,7 @@ func skip(value, prefix string) (string, error) { } // Parse parses a formatted string and returns the time value it represents. -// The layout defines the format by showing how the reference time, +// The layout defines the format by showing how the reference time, // defined to be // Mon Jan 2 15:04:05 -0700 MST 2006 // would be interpreted if it were the value; it serves as an example of