Skip to content

Commit

Permalink
Update examples.rst
Browse files Browse the repository at this point in the history
Small type when setting fields in the transition section
  • Loading branch information
Rossmairm authored and ssbarnea committed Mar 1, 2018
1 parent d365938 commit 5d4af08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Then perform a transition on an issue::
jira.transition_issue(issue, '5', assignee={'name': 'pm_user'}, resolution={'id': '3'})

# The above line is equivalent to:
jira.transition_issue(issue, '5', fields: {'assignee':{'name': 'pm_user'}, 'resolution':{'id': '3'}})
jira.transition_issue(issue, '5', fields={'assignee':{'name': 'pm_user'}, 'resolution':{'id': '3'}})

Projects
--------
Expand Down

0 comments on commit 5d4af08

Please sign in to comment.