From 10f7f80faea38ca3b84582dbb87338478a576834 Mon Sep 17 00:00:00 2001 From: Christopher Wedgwood Date: Sun, 11 Apr 2010 22:09:34 -0700 Subject: [PATCH] json: update documentation to match current coding style R=rsc CC=golang-dev https://golang.org/cl/888045 --- src/pkg/json/struct.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pkg/json/struct.go b/src/pkg/json/struct.go index b89ef29a8e..9be89cbd6f 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 -- 2.50.0