From 002143fcee28ff984892b586909aeb83ae19a318 Mon Sep 17 00:00:00 2001 From: Stephanie Hingtgen Date: Thu, 21 Oct 2021 14:59:25 -0600 Subject: [PATCH] feat: fix linter --- options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.go b/options.go index c68b0ad..faa58c4 100644 --- a/options.go +++ b/options.go @@ -267,7 +267,7 @@ func setupTCPConn(u *url.URL) (*Options, error) { // getHostPortWithDefaults is a helper function that splits the url into // a host and a port. If the host is missing, it defaults to localhost -// and if the port is missing, it defaults to 6379 +// and if the port is missing, it defaults to 6379. func getHostPortWithDefaults(u *url.URL) (string, string) { host, port, err := net.SplitHostPort(u.Host) if err != nil {