Skip to content

Commit

Permalink
context: use https in docs
Browse files Browse the repository at this point in the history
Change-Id: I9354712768702e3b083c77f30165a34cb414d686
Reviewed-on: https://go-review.googlesource.com/22810
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
minux authored and bradfitz committed May 5, 2016
1 parent bc1989f commit 0960c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/context/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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{}

Expand Down

0 comments on commit 0960c7c

Please sign in to comment.