Skip to content

Commit

Permalink
Update docs to use correct keyword argument (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebrob6 authored Apr 3, 2022
1 parent b45711c commit 67bee26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/tutorial.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Rtree also supports inserting any object you can pickle into the index (called
a clustered index in `libspatialindex`_ parlance). The following inserts the
picklable object ``42`` into the index with the given id::

>>> idx.insert(id=id, bounds=(left, bottom, right, top), obj=42)
>>> idx.insert(id=id, coordinates=(left, bottom, right, top), obj=42)

You can then return a list of objects by giving the ``objects=True`` flag
to intersection::
Expand Down

0 comments on commit 67bee26

Please sign in to comment.