1
0
mirror of https://github.com/golang/go synced 2024-10-03 20:21:22 -06:00

encoding/json: fix minor typo in documentation for Marshal

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/6325053
This commit is contained in:
David G. Andersen 2012-06-22 14:43:41 -07:00 committed by Rob Pike
parent dd6db9b7ba
commit 75344d3d5b

View File

@ -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.