]> Cypherpunks repositories - gostls13.git/commitdiff
encoding/json: fix bad formatting introduced in CL 20356
authorRuss Cox <rsc@golang.org>
Thu, 20 Oct 2016 18:51:58 +0000 (14:51 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 24 Oct 2016 20:37:52 +0000 (20:37 +0000)
Change-Id: I39a8b543e472e5ec5d4807a9b7f61657465c5ce5
Reviewed-on: https://go-review.googlesource.com/31816
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/encoding/json/decode.go

index 4a40752dc2a50d47b3c7ce5c1d0c69c913e83e1b..77fc4607dba51b89f2deeddf30d0827fe3f323ff 100644 (file)
@@ -70,8 +70,8 @@ import (
 //
 // To unmarshal a JSON object into a map, Unmarshal first establishes a map to
 // use. If the map is nil, Unmarshal allocates a new map. Otherwise Unmarshal
-// reuses the existing map, keeping existing entries. Unmarshal then stores key-
-// value pairs from the JSON object into the map. The map's key type must
+// reuses the existing map, keeping existing entries. Unmarshal then stores
+// key-value pairs from the JSON object into the map. The map's key type must
 // either be a string, an integer, or implement encoding.TextUnmarshaler.
 //
 // If a JSON value is not appropriate for a given target type,