From d488c4b4acc4ffadb4ac09b5c6f0f2898fd29fa2 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 22 Dec 2009 09:47:02 -0800 Subject: [PATCH] json: fix doc comment R=gri CC=golang-dev https://golang.org/cl/179128 --- src/pkg/json/decode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/json/decode.go b/src/pkg/json/decode.go index c2dd93eca5..64f3e764bb 100644 --- a/src/pkg/json/decode.go +++ b/src/pkg/json/decode.go @@ -19,7 +19,7 @@ import ( // of Go data types. The data return value may be one of float64, string, // bool, nil, []interface{} or map[string]interface{}. The array and map // elements may in turn contain any of the types listed above and so on. - +// // If Decode encounters a syntax error, it returns with err set to an // instance of ParseError. See ParseError documentation for details. func Decode(s string) (data interface{}, err os.Error) { -- 2.50.0