aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-02-05 15:05:35 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-02-05 17:06:51 +0000
commitfd9fd4c39d92f6f177d22b39e8ee000ae01a9511 (patch)
treeeea4818670e360343d9d8c662fd5fa13cd260662
parentdc89b5b48f0c1c9a73c6e0dbbae514ffc55788c8 (diff)
downloadgo-fd9fd4c39d92f6f177d22b39e8ee000ae01a9511.tar.gz
go-fd9fd4c39d92f6f177d22b39e8ee000ae01a9511.zip
net/http: fix doc typo
Change-Id: I93201fa4152f2d60b3eedb8d321a152819033121 Reviewed-on: https://go-review.googlesource.com/19270 Reviewed-by: Ian Lance Taylor <iant@golang.org>
-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 03f3e2b974..8cdab02af5 100644
--- a/src/net/http/request.go
+++ b/src/net/http/request.go
@@ -165,7 +165,7 @@ type Request struct {
// For server requests, the HTTP server handles this automatically
// and this field is not needed by Handlers.
//
- // The client requests, setting this field prevents re-use of
+ // For client requests, setting this field prevents re-use of
// TCP connections between requests to the same hosts, as if
// Transport.DisableKeepAlives were set.
Close bool