aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-07-18 17:54:32 -0700
committerRobert Griesemer <gri@golang.org>2011-07-18 17:54:32 -0700
commit95117d30a22962d5de9bfcef338e9e7851ff9154 (patch)
tree836a47fd78db36c7f67a623c3b3613ac087c7fa1
parent47e6042f73b07c5eaf28b978711605025c3d0df6 (diff)
downloadgo-95117d30a22962d5de9bfcef338e9e7851ff9154.tar.gz
go-95117d30a22962d5de9bfcef338e9e7851ff9154.zip
time: typo in documentation
R=r CC=golang-dev https://golang.org/cl/4763048
-rw-r--r--src/pkg/time/format.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/time/format.go b/src/pkg/time/format.go
index 26f40d1419..d07e1ad498 100644
--- a/src/pkg/time/format.go
+++ b/src/pkg/time/format.go
@@ -434,7 +434,7 @@ func skip(value, prefix string) (string, os.Error) {
// structure. Also, if the input string represents an inconsistent time
// (such as having the wrong day of the week), the returned value will also
// be inconsistent. In any case, the elements of the returned time will be
-// sane: hours in 0..23, minutes in 0..59, day of month in 0..31, etc.
+// sane: hours in 0..23, minutes in 0..59, day of month in 1..31, etc.
// Years must be in the range 0000..9999.
func Parse(alayout, avalue string) (*Time, os.Error) {
var t Time