]> Cypherpunks repositories - gostls13.git/commitdiff
json: fix doc comment
authorRuss Cox <rsc@golang.org>
Tue, 22 Dec 2009 17:47:02 +0000 (09:47 -0800)
committerRuss Cox <rsc@golang.org>
Tue, 22 Dec 2009 17:47:02 +0000 (09:47 -0800)
R=gri
CC=golang-dev
https://golang.org/cl/179128

src/pkg/json/decode.go

index c2dd93eca5d2b04bb9b96c40054aa5f3d821d981..64f3e764bbcceeb321d198a5cb48d9f908ac160d 100644 (file)
@@ -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) {