summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-12-22 09:47:02 -0800
committerRuss Cox <rsc@golang.org>2009-12-22 09:47:02 -0800
commit228081da0838e18a5d33cee34f82e9a3e981464c (patch)
tree65721a189b67d578b84f8bd38f7967de52651650
parent84f72bf675e84e4f5e67b705b65f4a2c6fb8e5ee (diff)
downloadgo-228081da0838e18a5d33cee34f82e9a3e981464c.tar.gz
json: fix doc comment
R=gri CC=golang-dev http://codereview.appspot.com/179128
-rw-r--r--src/pkg/json/decode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/json/decode.go b/src/pkg/json/decode.go
index c2dd93eca..64f3e764b 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) {