From: Blixt Date: Wed, 1 Nov 2017 20:25:24 +0000 (-0400) Subject: time: fix incorrect "zero pad" comment in example X-Git-Tag: go1.10beta1~452 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0d101d1a9fea83fa2663b834933328c83f6e960b;p=gostls13.git time: fix incorrect "zero pad" comment in example The comment currently implies that a zero will be added, but the underscore is used to add a space for single-digit dates. Change-Id: Ib3bac8a16bc2d1fcb26ab3bb7ad172b89e1a4a24 Reviewed-on: https://go-review.googlesource.com/75230 Reviewed-by: Ian Lance Taylor --- diff --git a/src/time/example_test.go b/src/time/example_test.go index 98a2d532a3..34df8daef2 100644 --- a/src/time/example_test.go +++ b/src/time/example_test.go @@ -238,10 +238,10 @@ func ExampleTime_Format() { // value. do("No pad", "<2>", "<7>") - // An underscore represents a zero pad, if required. + // An underscore represents a space pad, if the date only has one digit. do("Spaces", "<_2>", "< 7>") - // Similarly, a 0 indicates zero padding. + // A "0" indicates zero padding for single-digit values. do("Zeros", "<02>", "<07>") // If the value is already the right width, padding is not used.