aboutsummaryrefslogtreecommitdiff
path: root/src/net/http
diff options
context:
space:
mode:
authorKeiichi Hirobe <chalenge.akane@gmail.com>2021-08-29 02:38:38 +0900
committerIan Lance Taylor <iant@golang.org>2021-11-05 20:59:43 +0000
commitdbd3cf884986c88f5b3350709c0f51fa02330805 (patch)
treed2bf90e24182843999bb65fa4aee81d3b4bcffe5 /src/net/http
parent71559a6ffd26031fe562b461d6472fdddbe617eb (diff)
downloadgo-dbd3cf884986c88f5b3350709c0f51fa02330805.tar.xz
net/http: fix comment of writeRequest
Change-Id: I5ebfc6a89323cc086ea0e0b619370dc45da1f3a3 Reviewed-on: https://go-review.googlesource.com/c/go/+/345437 Reviewed-by: Damien Neil <dneil@google.com> Trust: Damien Neil <dneil@google.com> Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Damien Neil <dneil@google.com> TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/net/http')
-rw-r--r--src/net/http/transport.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/transport.go b/src/net/http/transport.go
index 05a1659136..f2d2f79280 100644
--- a/src/net/http/transport.go
+++ b/src/net/http/transport.go
@@ -2481,7 +2481,7 @@ type requestAndChan struct {
callerGone <-chan struct{} // closed when roundTrip caller has returned
}
-// A writeRequest is sent by the readLoop's goroutine to the
+// A writeRequest is sent by the caller's goroutine to the
// writeLoop's goroutine to write a request while the read loop
// concurrently waits on both the write response and the server's
// reply.