Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vanilevsky committed Jul 9, 2023
1 parent 5d34b06 commit d64de60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shortcut/shortcut.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ func ExtractShortcutStoryID(title string) (string, error) {
return matches[1], nil
}

func GenerateShortcutStoryURL(shortcutBaseUrl, ticketId string) string {
return fmt.Sprintf(storyURLFormat, shortcutBaseUrl, ticketId)
func GenerateShortcutStoryURL(shortcutBaseURL, ticketID string) string {
return fmt.Sprintf(storyURLFormat, shortcutBaseURL, ticketID)
}

0 comments on commit d64de60

Please sign in to comment.