diff --git a/src/context/context.go b/src/context/context.go index 5184b94e514..9ff19503b20 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{}