From 1e95f45603a7d951661fa568728f503c1f0e1f27 Mon Sep 17 00:00:00 2001 From: Sean Liao Date: Tue, 6 Sep 2022 18:29:19 +0100 Subject: [PATCH] http/httpproxy: remove comment on https proxy precedance For golang/go#40909 For golang/go#54890 Change-Id: I1de1803f8fd00f54290404a8760d9f704ff766c3 Reviewed-on: https://go-review.googlesource.com/c/net/+/428795 Auto-Submit: Damien Neil Run-TryBot: Damien Neil Reviewed-by: Damien Neil TryBot-Result: Gopher Robot Reviewed-by: Michael Knyszek --- http/httpproxy/proxy.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/httpproxy/proxy.go b/http/httpproxy/proxy.go index 16994ac13..c3bd9a1ee 100644 --- a/http/httpproxy/proxy.go +++ b/http/httpproxy/proxy.go @@ -81,8 +81,7 @@ type config struct { // FromEnvironment returns a Config instance populated from the // environment variables HTTP_PROXY, HTTPS_PROXY and NO_PROXY (or the -// lowercase versions thereof). HTTPS_PROXY takes precedence over -// HTTP_PROXY for https requests. +// lowercase versions thereof). // // The environment values may be either a complete URL or a // "host[:port]", in which case the "http" scheme is assumed. An error