aboutsummaryrefslogtreecommitdiff
path: root/src/encoding
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
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')
-rw-r--r--src/encoding/gob/doc.go2
-rw-r--r--src/encoding/json/fold.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/encoding/gob/doc.go b/src/encoding/gob/doc.go
index 31223b6d43..4d3d0076fb 100644
--- a/src/encoding/gob/doc.go
+++ b/src/encoding/gob/doc.go
@@ -246,7 +246,7 @@ where * signifies zero or more repetitions and the type id of a value must
be predefined or be defined before the value in the stream.
See "Gobs of data" for a design discussion of the gob wire format:
-http://blog.golang.org/gobs-of-data
+https://blog.golang.org/gobs-of-data
*/
package gob
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.