From e67e930344cd2d50fb883eab1b030932d95b6f5a Mon Sep 17 00:00:00 2001 From: "David G. Andersen" Date: Sat, 22 Sep 2012 05:53:43 +1000 Subject: [PATCH] [release-branch.go1] encoding/json: fix minor typo in documentation for Marshal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ««« backport 093dcfc4d307 encoding/json: fix minor typo in documentation for Marshal R=golang-dev, r CC=golang-dev https://golang.org/cl/6325053 »»» --- src/pkg/encoding/json/encode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/encoding/json/encode.go b/src/pkg/encoding/json/encode.go index b6e1cb16e5a..d2c1c4424c7 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.