@@ -1247,7 +1247,7 @@ def set_aspect(self, aspect, adjustable=None, anchor=None, share=False):
12471247
12481248 See `.set_anchor` for further details.
12491249
1250- share : bool, optional, default: False
1250+ share : bool, default: False
12511251 If ``True``, apply the settings to all shared Axes.
12521252
12531253 See Also
@@ -1309,7 +1309,7 @@ def set_adjustable(self, adjustable, share=False):
13091309 If 'box', change the physical dimensions of the Axes.
13101310 If 'datalim', change the ``x`` or ``y`` data limits.
13111311
1312- share : bool, optional, default: False
1312+ share : bool, default: False
13131313 If ``True``, apply the settings to all shared Axes.
13141314
13151315 See Also
@@ -1443,7 +1443,7 @@ def set_anchor(self, anchor, share=False):
14431443 | 'SW' | 'S' | 'SE' |
14441444 +------+------+------+
14451445
1446- share : bool, optional, default: False
1446+ share : bool, default: False
14471447 If ``True``, apply the settings to all shared Axes.
14481448
14491449 See Also
@@ -1664,7 +1664,7 @@ def axis(self, *args, emit=True, **kwargs):
16641664 ``xmax-xmin == ymax-ymin``.
16651665 ======== ==========================================================
16661666
1667- emit : bool, optional, default * True*
1667+ emit : bool, default: True
16681668 Whether observers are notified of the axis limit change.
16691669 This option is passed on to `~.Axes.set_xlim` and
16701670 `~.Axes.set_ylim`.
@@ -2092,7 +2092,7 @@ def update_datalim(self, xys, updatex=True, updatey=True):
20922092 The points to include in the data limits Bbox. This can be either
20932093 a list of (x, y) tuples or a Nx2 array.
20942094
2095- updatex, updatey : bool, optional, default * True*
2095+ updatex, updatey : bool, default: True
20962096 Whether to update the x/y limits.
20972097 """
20982098 xys = np .asarray (xys )
@@ -2370,12 +2370,12 @@ def autoscale(self, enable=True, axis='both', tight=None):
23702370
23712371 Parameters
23722372 ----------
2373- enable : bool or None, optional, default: True
2373+ enable : bool or None, default: True
23742374 True turns autoscaling on, False turns it off.
23752375 None leaves the autoscaling state unchanged.
2376- axis : {'both', 'x', 'y'}, optional, default: 'both'
2376+ axis : {'both', 'x', 'y'}, default: 'both'
23772377 Which axis to operate on.
2378- tight : bool or None, optional, default: None
2378+ tight : bool or None, default: None
23792379 If True, first set the margins to zero. Then, this argument is
23802380 forwarded to `autoscale_view` (regardless of its value); see the
23812381 description of its behavior there.
@@ -3174,14 +3174,14 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False,
31743174 The right xlim in data coordinates. Passing *None* leaves the
31753175 limit unchanged.
31763176
3177- emit : bool, optional, default: True
3177+ emit : bool, default: True
31783178 Whether to notify observers of limit change.
31793179
3180- auto : bool or None, optional, default: False
3180+ auto : bool or None, default: False
31813181 Whether to turn on autoscaling of the x-axis. True turns on,
31823182 False turns off, None leaves unchanged.
31833183
3184- xmin, xmax : scalar , optional
3184+ xmin, xmax : float , optional
31853185 They are equivalent to left and right respectively,
31863186 and it is an error to pass both *xmin* and *left* or
31873187 *xmax* and *right*.
@@ -3350,7 +3350,7 @@ def set_xticks(self, ticks, minor=False):
33503350 ----------
33513351 ticks : list
33523352 List of x-axis tick locations.
3353- minor : bool, optional, default: False
3353+ minor : bool, default: False
33543354 If ``False`` sets major ticks, if ``True`` sets minor ticks.
33553355 """
33563356 ret = self .xaxis .set_ticks (ticks , minor = minor )
@@ -3555,10 +3555,10 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False,
35553555 The top ylim in data coordinates. Passing *None* leaves the
35563556 limit unchanged.
35573557
3558- emit : bool, optional, default: True
3558+ emit : bool, default: True
35593559 Whether to notify observers of limit change.
35603560
3561- auto : bool or None, optional, default: False
3561+ auto : bool or None, default: False
35623562 Whether to turn on autoscaling of the y-axis. *True* turns on,
35633563 *False* turns off, *None* leaves unchanged.
35643564
@@ -3731,7 +3731,7 @@ def set_yticks(self, ticks, minor=False):
37313731 ----------
37323732 ticks : list
37333733 List of y-axis tick locations
3734- minor : bool, optional, default: False
3734+ minor : bool, default: False
37353735 If ``False`` sets major ticks, if ``True`` sets minor ticks.
37363736 """
37373737 ret = self .yaxis .set_ticks (ticks , minor = minor )
0 commit comments