]> Cypherpunks.ru repositories - gostls13.git/commitdiff
context: use https in docs
authorShenghou Ma <minux@golang.org>
Thu, 5 May 2016 18:22:34 +0000 (14:22 -0400)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 5 May 2016 18:31:23 +0000 (18:31 +0000)
Change-Id: I9354712768702e3b083c77f30165a34cb414d686
Reviewed-on: https://go-review.googlesource.com/22810
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/context/context.go

index 5184b94e514c18b2225621bfe75f95148990cc25..9ff19503b203adeb46786b1d5b561a00b6719bef 100644 (file)
@@ -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{}