Skip to content

Commit

Permalink
correct docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
lgolston committed Aug 25, 2023
1 parent 607efa4 commit b4e6d9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/cartopy/io/shapereader.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,15 @@ def records(self):

Reader = FionaReader if _HAS_FIONA else BasicReader
"""
Returns an instance of the default available shapereader interface.
Alias of the default available shapereader interface.
Will either be :class:`~cartopy.io.shapereader.FionaReader` (if fiona
installed) or :class:`~cartopy.io.shapereader.BasicReader`
(based on PyShp). Note that FionaReader has greater speed and additional
functionality, including attempting to auto-detect source encoding and
support for different format drivers. Both libraries support the 'encoding'
and 'bbox' keyword arguments. Note that BasicReader and FionaReader
instances can also be created directly.
and 'bbox' keyword arguments. If specific functionality is needed,
BasicReader and FionaReader instances can also be created directly.
"""

Expand Down

0 comments on commit b4e6d9b

Please sign in to comment.