From fa9ddcd7f1b18b96361126fd037a6901a0a84d74 Mon Sep 17 00:00:00 2001 From: Marcin Niemira Date: Fri, 30 Aug 2019 07:54:32 +1000 Subject: [PATCH] typofix in comment --- pkg/minikube/proxy/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/proxy/proxy.go b/pkg/minikube/proxy/proxy.go index 97753431de..a65d29098c 100644 --- a/pkg/minikube/proxy/proxy.go +++ b/pkg/minikube/proxy/proxy.go @@ -55,7 +55,7 @@ func isInBlock(ip string, block string) (bool, error) { return false, errors.Wrapf(err, "Error ip not in block") } -// ExcludeIP takes ip or CIDR as string and excludes the it from the http(s)_proxy +// ExcludeIP takes ip or CIDR as string and excludes it from the http(s)_proxy func ExcludeIP(ip string) error { if netIP := net.ParseIP(ip); netIP == nil { if _, _, err := net.ParseCIDR(ip); err != nil {