Skip to content

Commit

Permalink
Fix error in the example code in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Issei Horie authored and andygrunwald committed Nov 18, 2018
1 parent 570a74b commit 83c019a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func main() {
req, _ := jiraClient.NewRequest("GET", "rest/api/2/project", nil)

projects := new([]jira.Project)
_, err := jiraClient.Do(req, projects)
_, err = jiraClient.Do(req, projects)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 83c019a

Please sign in to comment.