aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/jsontext/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding/json/jsontext/doc.go')
-rw-r--r--src/encoding/json/jsontext/doc.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/encoding/json/jsontext/doc.go b/src/encoding/json/jsontext/doc.go
index 20ef5271d7..8e4bced015 100644
--- a/src/encoding/json/jsontext/doc.go
+++ b/src/encoding/json/jsontext/doc.go
@@ -25,8 +25,8 @@
// - a JSON literal (i.e., null, true, or false)
// - a JSON string (e.g., "hello, world!")
// - a JSON number (e.g., 123.456)
-// - a start or end delimiter for a JSON object (i.e., '{' or '}')
-// - a start or end delimiter for a JSON array (i.e., '[' or ']')
+// - a begin or end delimiter for a JSON object (i.e., '{' or '}')
+// - a begin or end delimiter for a JSON array (i.e., '[' or ']')
//
// A JSON token is represented by the [Token] type in Go. Technically,
// there are two additional structural characters (i.e., ':' and ','),