aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/request.go
diff options
context:
space:
mode:
authorabemotion <abemotion323@gmail.com>2025-04-04 18:40:06 -0700
committerGopher Robot <gobot@golang.org>2025-04-07 13:35:49 -0700
commitb2819d13dbe19343426e688da4ddfeb57c8589fc (patch)
treeb617a428d194100b5da5ef56851bd93a917668eb /src/net/http/request.go
parentffe47d978990c5bfc0089b94a5bea0f61c6219b7 (diff)
downloadgo-b2819d13dbe19343426e688da4ddfeb57c8589fc.tar.xz
net/http: add link to types
Some types are not linked. This change adds a link to each type. Change-Id: Id46fb64a74efb851ed76e4136f15e8fd9e445bb7 Reviewed-on: https://go-review.googlesource.com/c/go/+/663075 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/net/http/request.go')
-rw-r--r--src/net/http/request.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/request.go b/src/net/http/request.go
index 8a765c3442..167cff585a 100644
--- a/src/net/http/request.go
+++ b/src/net/http/request.go
@@ -878,7 +878,7 @@ func NewRequest(method, url string, body io.Reader) (*Request, error) {
// For an outgoing client request, the context
// controls the entire lifetime of a request and its response:
// obtaining a connection, sending the request, and reading the
-// response headers and body. See the Request type's documentation for
+// response headers and body. See the [Request] type's documentation for
// the difference between inbound and outbound request fields.
//
// If body is of type [*bytes.Buffer], [*bytes.Reader], or