releaser: Fix golint issues

struct field HtmlURL should be HTMLURL
This commit is contained in:
Cameron Moore
2018-09-06 14:50:54 -05:00
committed by Bjørn Erik Pedersen
parent 600047ff1c
commit ccd3285484
3 changed files with 9 additions and 9 deletions

View File

@@ -167,8 +167,8 @@ type countribCount struct {
}
func (c countribCount) AuthorLink() string {
if c.GitHubAuthor.HtmlURL != "" {
return fmt.Sprintf("[@%s](%s)", c.GitHubAuthor.Login, c.GitHubAuthor.HtmlURL)
if c.GitHubAuthor.HTMLURL != "" {
return fmt.Sprintf("[@%s](%s)", c.GitHubAuthor.Login, c.GitHubAuthor.HTMLURL)
}
if !strings.Contains(c.Author, "@") {