From 319f46055397b5476980be943895a990c92f027a Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 28 Jul 2022 19:35:15 -0400 Subject: [PATCH] docs: Update GetHTTPClient comment --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index c4b7e9b0..e68f6203 100644 --- a/client/client.go +++ b/client/client.go @@ -17,7 +17,7 @@ import ( // injectedHTTPClient is used for testing purposes var injectedHTTPClient *http.Client -// GetHTTPClient returns the shared HTTP client +// GetHTTPClient returns the shared HTTP client, or the client from the configuration passed func GetHTTPClient(config *Config) *http.Client { if injectedHTTPClient != nil { return injectedHTTPClient