From 8d38784ec2d933956021a3e989d283d758ccd9db Mon Sep 17 00:00:00 2001 From: SUMUKHA-PK Date: Tue, 26 Mar 2019 21:24:26 +0530 Subject: [PATCH] Build issues resolved --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index e328c4a..728f23f 100644 --- a/client.go +++ b/client.go @@ -69,7 +69,7 @@ func (cli *Client) BuildBaseURL(urlPath ...string) string { parts := []string{hsURL.Path} parts = append(parts, urlPath...) hsURL.Path = path.Join(parts...) - // Manually add the trailing slash back to the end of the path if it's explicitely needed + // Manually add the trailing slash back to the end of the path if it's explicitly needed if strings.HasSuffix(urlPath[len(urlPath)-1], "/") { hsURL.Path = hsURL.Path + "/" }