From: David G. Andersen Date: Fri, 22 Jun 2012 21:43:41 +0000 (-0700) Subject: encoding/json: fix minor typo in documentation for Marshal X-Git-Tag: go1.1rc2~2906 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=75344d3d5b85acb4db74eb98cdffdef1d490508c;p=gostls13.git encoding/json: fix minor typo in documentation for Marshal R=golang-dev, r CC=golang-dev https://golang.org/cl/6325053 --- diff --git a/src/pkg/encoding/json/encode.go b/src/pkg/encoding/json/encode.go index b6e1cb16e5..d2c1c4424c 100644 --- a/src/pkg/encoding/json/encode.go +++ b/src/pkg/encoding/json/encode.go @@ -55,7 +55,7 @@ import ( // nil pointer or interface value, and any array, slice, map, or string of // length zero. The object's default key string is the struct field name // but can be specified in the struct field's tag value. The "json" key in -// struct field's tag value is the key name, followed by an optional comma +// the struct field's tag value is the key name, followed by an optional comma // and options. Examples: // // // Field is ignored by this package.