From 7edc962a942e4a9d5e06dde79299f7fc5605f000 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Sat, 14 Apr 2018 00:23:09 +0530 Subject: content: update all golang.org links to https Ran sed -i 's/\[\[http:\/\/golang.org/\[\[https:\/\/golang.org/g' *.article Change-Id: I88acc5104e1a3fc5e9a1cf11b600b657202d8997 Reviewed-on: https://go-review.googlesource.com/106955 Run-TryBot: Andrew Bonventre TryBot-Result: Gobot Gobot Reviewed-by: Andrew Bonventre --- content/strings.article | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'content/strings.article') diff --git a/content/strings.article b/content/strings.article index 377945d..104540c 100644 --- a/content/strings.article +++ b/content/strings.article @@ -295,7 +295,7 @@ If a `for` `range` loop isn't sufficient for your purposes, chances are the facility you need is provided by a package in the library. The most important such package is -[[http://golang.org/pkg/unicode/utf8/][`unicode/utf8`]], +[[https://golang.org/pkg/unicode/utf8/][`unicode/utf8`]], which contains helper routines to validate, disassemble, and reassemble UTF-8 strings. Here is a program equivalent to the `for` `range` example above, @@ -311,7 +311,7 @@ The `for` `range` loop and `DecodeRuneInString` are defined to produce exactly the same iteration sequence. Look at the -[[http://golang.org/pkg/unicode/utf8/][documentation]] +[[https://golang.org/pkg/unicode/utf8/][documentation]] for the `unicode/utf8` package to see what other facilities it provides. -- cgit v1.2.3