1
0
mirror of https://github.com/golang/go synced 2024-11-24 01:50:11 -07:00

context: use https in docs

Change-Id: I9354712768702e3b083c77f30165a34cb414d686
Reviewed-on: https://go-review.googlesource.com/22810
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Shenghou Ma 2016-05-05 14:22:34 -04:00 committed by Brad Fitzpatrick
parent bc1989f115
commit 0960c7c7eb

View 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{}