Commit 2da1446b authored by Kenny Grant's avatar Kenny Grant Committed by Brad Fitzpatrick

time: fix incorrect "zero padding" comments

The comment on invalid time values in Constants and example
refers to _ zero padding when it should refer to space padding.

Change-Id: I5784356e389d324703e20eec6203f147db92880f
Reviewed-on: https://go-review.googlesource.com/75410Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent e4468c99
...@@ -318,7 +318,7 @@ func ExampleParse() { ...@@ -318,7 +318,7 @@ func ExampleParse() {
fmt.Println(t) fmt.Println(t)
// Some valid layouts are invalid time values, due to format specifiers // Some valid layouts are invalid time values, due to format specifiers
// such as _ for zero padding and Z for zone information. // such as _ for space padding and Z for zone information.
// For example the RFC3339 layout 2006-01-02T15:04:05Z07:00 // For example the RFC3339 layout 2006-01-02T15:04:05Z07:00
// contains both Z and a time zone offset in order to handle both valid options: // contains both Z and a time zone offset in order to handle both valid options:
// 2006-01-02T15:04:05Z // 2006-01-02T15:04:05Z
......
...@@ -19,7 +19,7 @@ import "errors" ...@@ -19,7 +19,7 @@ import "errors"
// the same transformation to a general time value. // the same transformation to a general time value.
// //
// Some valid layouts are invalid time values for time.Parse, due to formats // Some valid layouts are invalid time values for time.Parse, due to formats
// such as _ for zero padding and Z for zone information. // such as _ for space padding and Z for zone information.
// //
// Within the format string, an underscore _ represents a space that may be // Within the format string, an underscore _ represents a space that may be
// replaced by a digit if the following number (a day) has two digits; for // replaced by a digit if the following number (a day) has two digits; for
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment