1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-06-20 23:59:26 +02:00

style: Fix typos

go-jira/examples/renderedfields/main.go
	Line 51: warning: "Targetting" is a misspelling of "Targeting" (misspell)

go-jira/authentication.go
	Line 169: warning: "authenticaiton" is a misspelling of "authentication" (misspell)

go-jira/issue.go
	Line 802: warning: "specifiying" is a misspelling of "specifying" (misspell)
This commit is contained in:
Andy Grunwald
2020-05-03 17:46:02 +02:00
parent e20a3a057d
commit ef6d633ae1
3 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ func main() {
return
}
fmt.Printf("Targetting %s for issue %s\n", strings.TrimSpace(jiraURL), key)
fmt.Printf("Targeting %s for issue %s\n", strings.TrimSpace(jiraURL), key)
options := &jira.GetQueryOptions{Expand: "renderedFields"}
u, _, err := client.Issue.Get(key, options)