aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/encode.go
diff options
context:
space:
mode:
authorrajender <rajenderreddykompally@gmail.com>2017-11-27 23:58:29 +0530
committerBrad Fitzpatrick <bradfitz@golang.org>2017-11-27 18:51:36 +0000
commit671cf92c322788b4ded03ded6c078c130c7de362 (patch)
tree7f8b9e82adba407c7770c5170e9c18d920018864 /src/encoding/json/encode.go
parent0d264746063df2887875432170cbf11607c85501 (diff)
downloadgo-671cf92c322788b4ded03ded6c078c130c7de362.tar.xz
encoding/json: remove the word "text" in "JSON text" from package docs.
It was added in CL 79995. It is unnecessarily confusing. Change-Id: Ib8ff35b9f71b54ff99d2d6e0534c7128e1f4345a Reviewed-on: https://go-review.googlesource.com/80035 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/encoding/json/encode.go')
-rw-r--r--src/encoding/json/encode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/json/encode.go b/src/encoding/json/encode.go
index a5596879ac..0522c43495 100644
--- a/src/encoding/json/encode.go
+++ b/src/encoding/json/encode.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Package json implements encoding and decoding of JSON text as defined in
+// Package json implements encoding and decoding of JSON as defined in
// RFC 7159. The mapping between JSON and Go values is described
// in the documentation for the Marshal and Unmarshal functions.
//