From fea7e93c8d3fa2e0b472d8d16438f0c6d9b6879f Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Tue, 2 Feb 2021 06:06:49 +0900 Subject: [PATCH] chore: fix comment (#1158) --- util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/util.go b/util/util.go index 5d65ccbd..35782a08 100644 --- a/util/util.go +++ b/util/util.go @@ -180,7 +180,7 @@ func Major(version string) string { return ver[0:strings.Index(ver, ".")] } -// GetHttpClient return http.Client +// GetHTTPClient return http.Client func GetHTTPClient(proxy string) (*http.Client, error) { if proxy != "" { proxyURL, err := url.Parse(proxy)