aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json
diff options
context:
space:
mode:
authorJes Cok <xigua67damn@gmail.com>2023-08-14 11:53:26 +0000
committerGopher Robot <gobot@golang.org>2023-08-14 21:26:16 +0000
commit36dc84ca5738e5aa03814dba4c439a0d823a1fa9 (patch)
tree60be3842eb7dcd4b520b304babaab09836e48ed2 /src/encoding/json
parent6d5ea923a2e3006c032d6b959e63f76d43ac2c74 (diff)
downloadgo-36dc84ca5738e5aa03814dba4c439a0d823a1fa9.tar.xz
encoding/json: declare hex as a const
hex is in fact immutable, declare it as a const to avoid accidental modification, also for consistency with other packages. Change-Id: I99f292e98c82d4c4526e46c9897d154d0c073da5 GitHub-Last-Rev: d2f06965e7e03df470d8c3c8882619187abf1609 GitHub-Pull-Request: golang/go#62011 Reviewed-on: https://go-review.googlesource.com/c/go/+/519155 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/encoding/json')
-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 a98f1a060c..536ec21f4f 100644
--- a/src/encoding/json/encode.go
+++ b/src/encoding/json/encode.go
@@ -245,7 +245,7 @@ func (e *MarshalerError) Error() string {
// Unwrap returns the underlying error.
func (e *MarshalerError) Unwrap() error { return e.Err }
-var hex = "0123456789abcdef"
+const hex = "0123456789abcdef"
// An encodeState encodes JSON into a bytes.Buffer.
type encodeState struct {