Skip to content

Commit 5091780

Browse files
author
Matt Harasymczuk
authored
Readability changes to Readme file
1 parent 2f3d555 commit 5091780

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ Documentation
1010

1111
.. _Documentation: https://atlassian-python-api.readthedocs.io/en/latest/index.html
1212

13-
Examples
14-
--------
15-
.. tip:: More examples in ``examples/`` directory.
16-
17-
For everyday normal use, just install package using pip
18-
13+
Install
14+
-------
1915
.. code-block:: console
2016
2117
$ pip install atlassian-python-api
2218
19+
Examples
20+
--------
21+
**More examples in ``examples/`` directory.**
22+
2323
Here's a short example how to create a Confluence page:
2424

2525
.. code-block:: python
@@ -49,7 +49,7 @@ And here's another example how to get issues from Jira using JQL Query:
4949
username='admin',
5050
password='admin')
5151
52-
JQL = 'project = DEMO AND status NOT IN (Closed, Resolved) ORDER BY issuekey'
52+
JQL = 'project = DEMO AND status IN ("To Do", "In Progress") ORDER BY issuekey'
5353
5454
data = jira.jql(JQL)
5555
print(data)

0 commit comments

Comments
 (0)