Skip to content

Commit c7b85e9

Browse files
180909seankhliao
authored andcommitted
all: update blog link
Change-Id: I8631fbc552b85f35b494a8d5a2c0baf68ee66982 Reviewed-on: https://go-review.googlesource.com/c/go/+/690215 Reviewed-by: qiu laidongfeng <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Damien Neil <[email protected]> Reviewed-by: Mark Freeman <[email protected]>
1 parent a8dd771 commit c7b85e9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/cmd/pprof/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
//
1313
// go tool pprof -h
1414
//
15-
// For an example, see https://blog.golang.org/profiling-go-programs.
15+
// For an example, see https://go.dev/blog/pprof.
1616
package main

src/context/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ type Context interface {
103103
// }
104104
// }
105105
//
106-
// See https://blog.golang.org/pipelines for more examples of how to use
106+
// See https://go.dev/blog/pipelines for more examples of how to use
107107
// a Done channel for cancellation.
108108
Done() <-chan struct{}
109109

src/encoding/gob/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ released version, subject to issues such as security fixes. See the Go compatibi
274274
document for background: https://golang.org/doc/go1compat
275275
276276
See "Gobs of data" for a design discussion of the gob wire format:
277-
https://blog.golang.org/gobs-of-data
277+
https://go.dev/blog/gob
278278
279279
# Security
280280

src/net/http/httptrace/trace.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func WithClientTrace(ctx context.Context, trace *ClientTrace) context.Context {
7676
// during a single round trip and has no hooks that span a series
7777
// of redirected requests.
7878
//
79-
// See https://blog.golang.org/http-tracing for more.
79+
// See https://go.dev/blog/http-tracing for more.
8080
type ClientTrace struct {
8181
// GetConn is called before a connection is created or
8282
// retrieved from an idle pool. The hostPort is the

src/net/http/pprof/pprof.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
// in your browser.
6868
//
6969
// For a study of the facility in action, visit
70-
// https://blog.golang.org/2011/06/profiling-go-programs.html.
70+
// https://go.dev/blog/pprof.
7171
package pprof
7272

7373
import (

0 commit comments

Comments
 (0)