aboutsummaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorShenghou Ma <minux@golang.org>2016-05-05 14:22:34 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2016-05-05 18:31:23 +0000
commit0960c7c7eb30b3d651037c799aaa0d80722f063f (patch)
tree8b2c8dfae359e29b350490bd6536d99e8dc2c22d /src/context
parentbc1989f1154b5b8f235e7e4932d935e490d6e79e (diff)
downloadgo-0960c7c7eb30b3d651037c799aaa0d80722f063f.tar.gz
go-0960c7c7eb30b3d651037c799aaa0d80722f063f.zip
context: use https in docs
Change-Id: I9354712768702e3b083c77f30165a34cb414d686 Reviewed-on: https://go-review.googlesource.com/22810 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/context')
-rw-r--r--src/context/context.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context/context.go b/src/context/context.go
index 5184b94e51..9ff19503b2 100644
--- a/src/context/context.go
+++ b/src/context/context.go
@@ -32,7 +32,7 @@
// The same Context may be passed to functions running in different goroutines;
// Contexts are safe for simultaneous use by multiple goroutines.
//
-// See http://blog.golang.org/context for example code for a server that uses
+// See https://blog.golang.org/context for example code for a server that uses
// Contexts.
package context
@@ -81,7 +81,7 @@ type Context interface {
// }
// }
//
- // See http://blog.golang.org/pipelines for more examples of how to use
+ // See https://blog.golang.org/pipelines for more examples of how to use
// a Done channel for cancelation.
Done() <-chan struct{}