summaryrefslogtreecommitdiff
path: root/src/pkg/time/format.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2013-04-22 15:41:06 -0700
committerRob Pike <r@golang.org>2013-04-22 15:41:06 -0700
commit5e9a34f5f99ddbc72363f9326b3eef7ebe96e055 (patch)
tree262447351da6b8e652d7bbc48389854a2adffb8d /src/pkg/time/format.go
parentcfd8751bc79c3ffd654c89b91ce9494bd39dde23 (diff)
downloadgo-5e9a34f5f99ddbc72363f9326b3eef7ebe96e055.tar.gz
time: fix typo in comment
R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/8915043
Diffstat (limited to 'src/pkg/time/format.go')
-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 f18ea62f6..22bc1bfe0 100644
--- a/src/pkg/time/format.go
+++ b/src/pkg/time/format.go
@@ -634,7 +634,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,
// Mon Jan 2 15:04:05 -0700 MST 2006
-// would be interepreted if it were the value; it serves as an example of
+// would be interpreted if it were the value; it serves as an example of
// the input format. The same interpretation will then be made to the
// input string.
// Predefined layouts ANSIC, UnixDate, RFC3339 and others describe standard