Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19bc755

Browse files
committed
Minor fixes to polar locator docstrings.
1 parent 5799a5c commit 19bc755

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/projections/polar.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ class ThetaLocator(mticker.Locator):
230230
view spans the entire circle. In such cases, the previously used default
231231
locations of every 45 degrees are returned.
232232
"""
233+
233234
def __init__(self, base):
234235
self.base = base
235236
self.axis = self.base.axis = _AxisWrapper(self.base.axis)
@@ -408,10 +409,9 @@ class RadialLocator(mticker.Locator):
408409
"""
409410
Used to locate radius ticks.
410411
411-
Ensures that all ticks are strictly positive. For all other
412-
tasks, it delegates to the base
413-
:class:`~matplotlib.ticker.Locator` (which may be different
414-
depending on the scale of the *r*-axis.
412+
Ensures that all ticks are strictly positive. For all other tasks, it
413+
delegates to the base `.Locator` (which may be different depending on the
414+
scale of the *r*-axis).
415415
"""
416416

417417
def __init__(self, base, axes=None):

0 commit comments

Comments
 (0)