aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/transport_test.go
diff options
context:
space:
mode:
authorIan Davis <nospam@iandavis.com>2018-09-28 09:26:20 +0100
committerDave Cheney <dave@cheney.net>2018-09-28 08:46:55 +0000
commitd3dcd89130674ee56a3ae55021e4b14ef989cf8a (patch)
tree16c10da441c9793ec79e949afe2b6d183cee7572 /src/net/http/transport_test.go
parent75f4aa86bacb668348e788692974aa554cc61915 (diff)
downloadgo-d3dcd89130674ee56a3ae55021e4b14ef989cf8a.tar.gz
go-d3dcd89130674ee56a3ae55021e4b14ef989cf8a.zip
all: remove repeated "the" from comments
A simple grep over the codebase for "the the" which is often missed by humans. Change-Id: Ie4b4f07abfc24c73dcd51c8ef1edf4f73514a21c Reviewed-on: https://go-review.googlesource.com/138335 Reviewed-by: Dave Cheney <dave@cheney.net>
Diffstat (limited to 'src/net/http/transport_test.go')
-rw-r--r--src/net/http/transport_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/http/transport_test.go b/src/net/http/transport_test.go
index 327b3b4996..739fe5f597 100644
--- a/src/net/http/transport_test.go
+++ b/src/net/http/transport_test.go
@@ -4753,7 +4753,7 @@ func TestClientTimeoutKillsConn_BeforeHeaders(t *testing.T) {
}
case <-time.After(timeout * 10):
// If we didn't get into the Handler in 50ms, that probably means
- // the builder was just slow and the the Get failed in that time
+ // the builder was just slow and the Get failed in that time
// but never made it to the server. That's fine. We'll usually
// test the part above on faster machines.
t.Skip("skipping test on slow builder")
@@ -4764,7 +4764,7 @@ func TestClientTimeoutKillsConn_BeforeHeaders(t *testing.T) {
// conn is closed so that it's not reused.
//
// This is the test variant that has the server send response headers
-// first, and time out during the the write of the response body.
+// first, and time out during the write of the response body.
func TestClientTimeoutKillsConn_AfterHeaders(t *testing.T) {
setParallel(t)
defer afterTest(t)