From: Anfernee Yongkun Gui Date: Mon, 24 Feb 2014 05:18:41 +0000 (-0800) Subject: net/http: fix comment in connectMethod's key format X-Git-Tag: go1.3beta1~623 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4228092b2c2ab92e0a1ef05d1f0a93179d1266d5;p=gostls13.git net/http: fix comment in connectMethod's key format LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/66990045 --- diff --git a/src/pkg/net/http/transport.go b/src/pkg/net/http/transport.go index 2c312a77a0..5655d704f7 100644 --- a/src/pkg/net/http/transport.go +++ b/src/pkg/net/http/transport.go @@ -615,8 +615,8 @@ func useProxy(addr string) bool { // // Cache key form Description // ----------------- ------------------------- -// ||http|foo.com http directly to server, no proxy -// ||https|foo.com https directly to server, no proxy +// |http|foo.com http directly to server, no proxy +// |https|foo.com https directly to server, no proxy // http://proxy.com|https|foo.com http to proxy, then CONNECT to foo.com // http://proxy.com|http http to proxy, http to anywhere after that //