]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: fix a typo in comments
authorJavier Revillas <jrevillas@massivedynamic.io>
Sun, 25 Aug 2019 16:05:41 +0000 (16:05 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 27 Aug 2019 16:50:35 +0000 (16:50 +0000)
HTTP is an initialism, not an acronym, where you pronounce each letter as a
word. It's "an H", not "a H".

Running `find src/net/http -type f | xargs grep -n 'an HTTP' | wc -l` shows
that the "an HTTP" form is used 67 times across the `net/http` package.
Furthermore, `find src/net/http -type f | xargs grep -n 'a HTTP' | wc -l`
yields only 4 results.

Change-Id: I219c292a9e2c9bf7a009dbfe82ea8b15874685e9
GitHub-Last-Rev: 6ebd095023af47444b6b0fc5b6d7b26d85f4c7b7
GitHub-Pull-Request: golang/go#33810
Reviewed-on: https://go-review.googlesource.com/c/go/+/191700
Reviewed-by: Toshihiro Shiino <shiino.toshihiro@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/net/http/httptrace/trace.go
src/net/http/request.go

index 8b377edee5d19dc8fd2d5a46bc8059092cee322f..6a5cbac9d89ce5cb64b25fa6ce9d78ef8a421099 100644 (file)
@@ -133,8 +133,8 @@ type ClientTrace struct {
        ConnectDone func(network, addr string, err error)
 
        // TLSHandshakeStart is called when the TLS handshake is started. When
-       // connecting to a HTTPS site via a HTTP proxy, the handshake happens after
-       // the CONNECT request is processed by the proxy.
+       // connecting to an HTTPS site via an HTTP proxy, the handshake happens
+       // after the CONNECT request is processed by the proxy.
        TLSHandshakeStart func()
 
        // TLSHandshakeDone is called after the TLS handshake with either the
index 31d62083cb0ee3287a2f968735a325163d477693..6e113f1607c32de5b1201f84b1815121c4f2c853 100644 (file)
@@ -763,7 +763,7 @@ func removeZone(host string) string {
        return host[:j] + host[i:]
 }
 
-// ParseHTTPVersion parses a HTTP version string.
+// ParseHTTPVersion parses an HTTP version string.
 // "HTTP/1.0" returns (1, 0, true).
 func ParseHTTPVersion(vers string) (major, minor int, ok bool) {
        const Big = 1000000 // arbitrary upper bound