diff options
author | Christopher Wedgwood <cw@f00f.org> | 2010-04-11 22:09:34 -0700 |
---|---|---|
committer | Christopher Wedgwood <cw@f00f.org> | 2010-04-11 22:09:34 -0700 |
commit | 889b77fbd617217be4550ad79f045f811ee4c70a (patch) | |
tree | 62bb8785320ae4ef7935f42ecceb3d7081f8896e | |
parent | ab23c9da33793e7aae9285c583b1e5acee1d5f61 (diff) | |
download | golang-889b77fbd617217be4550ad79f045f811ee4c70a.tar.gz |
json: update documentation to match current coding style
R=rsc
CC=golang-dev
http://codereview.appspot.com/888045
Committer: Russ Cox <rsc@golang.org>
-rw-r--r-- | src/pkg/json/struct.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pkg/json/struct.go b/src/pkg/json/struct.go index b89ef29a8..9be89cbd6 100644 --- a/src/pkg/json/struct.go +++ b/src/pkg/json/struct.go @@ -236,13 +236,13 @@ func (b *structBuilder) Key(k string) Builder { // For example, given these definitions: // // type Email struct { -// Where string; -// Addr string; +// Where string +// Addr string // } // // type Result struct { -// Name string; -// Phone string; +// Name string +// Phone string // Email []Email // } // @@ -272,8 +272,8 @@ func (b *structBuilder) Key(k string) Builder { // "phone", // no phone given // []Email{ // Email{ "home", "gre@example.com" }, -// Email{ "work", "gre@work.com" } -// } +// Email{ "work", "gre@work.com" }, +// }, // } // // Note that the field r.Phone has not been modified and |