summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathieu Lonjaret <mathieu.lonjaret@gmail.com>2014-07-24 18:18:41 -0400
committerMathieu Lonjaret <mathieu.lonjaret@gmail.com>2014-07-24 18:18:41 -0400
commit2d1ec0a0a3c41467bb2e287856fd067242ad1bc1 (patch)
tree7ef8a44d74252d3a96f4526e202e935335e28011 /src
parent62638ea29e928e557d58fd673fb8d8a0eab6c4b2 (diff)
downloadgo-2d1ec0a0a3c41467bb2e287856fd067242ad1bc1.tar.gz
time: minor typo in doc
LGTM=minux R=golang-codereviews, minux CC=golang-codereviews https://codereview.appspot.com/120150043 Committer: Shenghou Ma <minux@golang.org>
Diffstat (limited to 'src')
-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 9f210ea27..5f732d8ec 100644
--- a/src/pkg/time/format.go
+++ b/src/pkg/time/format.go
@@ -704,7 +704,7 @@ func skip(value, prefix string) (string, error) {
// The zone abbreviation "UTC" is recognized as UTC regardless of location.
// If the zone abbreviation is unknown, Parse records the time as being
// in a fabricated location with the given zone abbreviation and a zero offset.
-// This choice means that such a time can be parse and reformatted with the
+// This choice means that such a time can be parsed and reformatted with the
// same layout losslessly, but the exact instant used in the representation will
// differ by the actual zone offset. To avoid such problems, prefer time layouts
// that use a numeric zone offset, or use ParseInLocation.