Skip to content

Commit 09ea210

Browse files
authored
Fix small typo in Objects vs Dictionaries
Fixed small typo where the "sense" of the statement was reverse of what you actually should use. The example below was correct.
1 parent a77d074 commit 09ea210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ You can use the ``offset`` and ``limit`` query parameters to paginate items in a
157157
Objects vs dictionaries
158158
-----------------------------------
159159

160-
Most ``get``, ``create`` and ``update`` functions can optionally return dictionaries rather than class objects by setting ``as_objects=True``.
160+
Most ``get``, ``create`` and ``update`` functions can optionally return dictionaries rather than class objects by setting ``as_objects=False``.
161161
This is especially useful when the returned data needs to be further manipulated by popular packages
162162
such as ``Numpy``, ``Pandas``, etc.
163163

@@ -342,4 +342,4 @@ A *get* call on a non-existing resource will return a 404 Client Error.
342342
print(e)
343343
344344
#Output:
345-
#404 Client Error: Not Found for: GET https://localhost:8443/rep//jms/api/v1/projects/non_existing_project
345+
#404 Client Error: Not Found for: GET https://localhost:8443/rep//jms/api/v1/projects/non_existing_project

0 commit comments

Comments
 (0)