aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2015-07-11 08:51:20 -0600
committerBrad Fitzpatrick <bradfitz@golang.org>2015-07-12 04:42:40 +0000
commit783297ad6a0c0d5bc14856e95d3c03c3d6f58640 (patch)
treebb731236497d20c13dba58370d6bd3cda2567cd5 /src/encoding/json
parent4735002f58af2cf7f8ffbbea1830fe0401579102 (diff)
downloadgo-783297ad6a0c0d5bc14856e95d3c03c3d6f58640.tar.xz
all: link to https for golang subdomains too
The previous commit (git 2ae77376) just did golang.org. This one includes golang.org subdomains like blog, play, and build. Change-Id: I4469f7b307ae2a12ea89323422044e604c5133ae Reviewed-on: https://go-review.googlesource.com/12071 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/encoding/json')
-rw-r--r--src/encoding/json/fold.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/json/fold.go b/src/encoding/json/fold.go
index d6f77c93e5..9e170127db 100644
--- a/src/encoding/json/fold.go
+++ b/src/encoding/json/fold.go
@@ -26,7 +26,7 @@ const (
// The letters S and K are special because they map to 3 runes, not just 2:
// * S maps to s and to U+017F 'ſ' Latin small letter long s
// * k maps to K and to U+212A 'K' Kelvin sign
-// See http://play.golang.org/p/tTxjOc0OGo
+// See https://play.golang.org/p/tTxjOc0OGo
//
// The returned function is specialized for matching against s and
// should only be given s. It's not curried for performance reasons.