aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorberkant ipek <41230766+0xbkt@users.noreply.github.com>2019-02-12 14:45:12 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2019-02-14 00:24:49 +0000
commite3a53db2b838655f5f1d887156cfbc4ed0a0b714 (patch)
tree690a99c03d52e0d6e3b25c3411252a68db2553fc
parent52d020260d14a10ec72a963fd6da9c1816b08b05 (diff)
downloadgo-e3a53db2b838655f5f1d887156cfbc4ed0a0b714.tar.gz
go-e3a53db2b838655f5f1d887156cfbc4ed0a0b714.zip
[release-branch.go1.12] net/http/httptrace: fix typo
Change-Id: I15279e4aa9306bde925929907a7b5e7ef5d8b642 GitHub-Last-Rev: 6bc2d66aecd424b322ec0c23b280e74cb22e08c3 GitHub-Pull-Request: golang/go#30193 Reviewed-on: https://go-review.googlesource.com/c/162018 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> (cherry picked from commit 1edd2a34c1bcf2133b659878e8b59e401eb8cc24) Reviewed-on: https://go-review.googlesource.com/c/162359 Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--src/net/http/httptrace/trace.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/httptrace/trace.go b/src/net/http/httptrace/trace.go
index 3a627412b3..8b377edee5 100644
--- a/src/net/http/httptrace/trace.go
+++ b/src/net/http/httptrace/trace.go
@@ -152,7 +152,7 @@ type ClientTrace struct {
WroteHeaders func()
// Wait100Continue is called if the Request specified
- // "Expected: 100-continue" and the Transport has written the
+ // "Expect: 100-continue" and the Transport has written the
// request headers but is waiting for "100 Continue" from the
// server before writing the request body.
Wait100Continue func()