From 8ea16c191926022b6261fa67e01a3f9120054736 Mon Sep 17 00:00:00 2001 From: phillc <15082+phillc@users.noreply.github.com> Date: Mon, 21 Sep 2020 16:37:12 -0400 Subject: [PATCH] `find . -type f \( -name "*.go" -or -name "*.md" \) -print0 | xargs -0 gsed -i 's/the the /the /g'` Kubernetes-commit: adbc7c2172ea622db7399f41e893063b00ca1a87 --- rest/config.go | 2 +- transport/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rest/config.go b/rest/config.go index d4de8d20..fe132342 100644 --- a/rest/config.go +++ b/rest/config.go @@ -134,7 +134,7 @@ type Config struct { // Dial specifies the dial function for creating unencrypted TCP connections. Dial func(ctx context.Context, network, address string) (net.Conn, error) - // Proxy is the the proxy func to be used for all requests made by this + // Proxy is the proxy func to be used for all requests made by this // transport. If Proxy is nil, http.ProxyFromEnvironment is used. If Proxy // returns a nil *URL, no proxy is used. // diff --git a/transport/config.go b/transport/config.go index 45db2486..926cc53e 100644 --- a/transport/config.go +++ b/transport/config.go @@ -70,7 +70,7 @@ type Config struct { // Dial specifies the dial function for creating unencrypted TCP connections. Dial func(ctx context.Context, network, address string) (net.Conn, error) - // Proxy is the the proxy func to be used for all requests made by this + // Proxy is the proxy func to be used for all requests made by this // transport. If Proxy is nil, http.ProxyFromEnvironment is used. If Proxy // returns a nil *URL, no proxy is used. //