From cb3084d0b76a380efdebbba2286cb15ba89af23a Mon Sep 17 00:00:00 2001 From: Naven Gogineni Date: Tue, 9 Mar 2021 14:45:32 +0000 Subject: [PATCH] docs(github): fix typo in comment --- internal/releaser/github/github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/releaser/github/github.go b/internal/releaser/github/github.go index 0ca529f..b7c59e4 100644 --- a/internal/releaser/github/github.go +++ b/internal/releaser/github/github.go @@ -58,7 +58,7 @@ func New(c *config.GitHubProvider, checkConfig bool) (*Client, error) { if client, err = github.NewEnterpriseClient(c.CustomURL+"/api/v3/", c.CustomURL+"/api/uploads/", httpClient); err != nil { return &Client{}, err } - // note: do not append find / to end of the url since all the url constructions using this + // note: do not append / to end of the url since all the url constructions using this // assume no trailing / baseURL = c.CustomURL + "/api/v3" }