]> Cypherpunks repositories - gostls13.git/commitdiff
all: update blog link
authorjiahua wang <wjh180909@gmail.com>
Thu, 24 Jul 2025 15:54:12 +0000 (23:54 +0800)
committerSean Liao <sean@liao.dev>
Fri, 8 Aug 2025 17:00:21 +0000 (10:00 -0700)
Change-Id: I8631fbc552b85f35b494a8d5a2c0baf68ee66982
Reviewed-on: https://go-review.googlesource.com/c/go/+/690215
Reviewed-by: qiu laidongfeng <2645477756@qq.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
src/cmd/pprof/doc.go
src/context/context.go
src/encoding/gob/doc.go
src/net/http/httptrace/trace.go
src/net/http/pprof/pprof.go

index 59e1a47cd19ff2d1552bc63d8322e3ec61c58306..f55a50a60f196e07b5a5d5e8c137065000a2601e 100644 (file)
@@ -12,5 +12,5 @@
 //
 //     go tool pprof -h
 //
-// For an example, see https://blog.golang.org/profiling-go-programs.
+// For an example, see https://go.dev/blog/pprof.
 package main
index 4f150f6a1d6c7ec96284dc610c67ccf99d3675b5..4fb537e23387ab75ea48bc519fe622cb4ec231a4 100644 (file)
@@ -103,7 +103,7 @@ type Context interface {
        //      }
        //  }
        //
-       // See https://blog.golang.org/pipelines for more examples of how to use
+       // See https://go.dev/blog/pipelines for more examples of how to use
        // a Done channel for cancellation.
        Done() <-chan struct{}
 
index 0866ba1544666d9157eb685e7dc962dd2b7d9f34..c746806887ab3d40cce943ace3ede17cd708cae7 100644 (file)
@@ -274,7 +274,7 @@ released version, subject to issues such as security fixes. See the Go compatibi
 document for background: https://golang.org/doc/go1compat
 
 See "Gobs of data" for a design discussion of the gob wire format:
-https://blog.golang.org/gobs-of-data
+https://go.dev/blog/gob
 
 # Security
 
index 706a4329578ef79e6522c5c6608439bedf84e4fb..cee13d2da8345d3838fd865a41999d944ff78ddd 100644 (file)
@@ -76,7 +76,7 @@ func WithClientTrace(ctx context.Context, trace *ClientTrace) context.Context {
 // during a single round trip and has no hooks that span a series
 // of redirected requests.
 //
-// See https://blog.golang.org/http-tracing for more.
+// See https://go.dev/blog/http-tracing for more.
 type ClientTrace struct {
        // GetConn is called before a connection is created or
        // retrieved from an idle pool. The hostPort is the
index 6ba6b2c8e033b95f2297e82929ac73c6d85cfa61..635d3ad9d9f132450fac928d9838d43d7f621f11 100644 (file)
@@ -67,7 +67,7 @@
 // in your browser.
 //
 // For a study of the facility in action, visit
-// https://blog.golang.org/2011/06/profiling-go-programs.html.
+// https://go.dev/blog/pprof.
 package pprof
 
 import (