@@ -2807,11 +2807,11 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False, **kw):
2807
2807
----------
2808
2808
left : scalar, optional
2809
2809
The left xlim (default: None, which leaves the left limit
2810
- unchanged). The previous name `xmin` may be used instead.
2810
+ unchanged).
2811
2811
2812
2812
right : scalar, optional
2813
2813
The right xlim (default: None, which leaves the right limit
2814
- unchanged). The previous name `xmax` may be used instead.
2814
+ unchanged).
2815
2815
2816
2816
emit : bool, optional
2817
2817
Whether to notify observers of limit change (default: True).
@@ -2828,8 +2828,7 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False, **kw):
2828
2828
Returns
2829
2829
-------
2830
2830
xlimits : tuple
2831
- Returns the current x-axis limits, reflecting any changes
2832
- made by this call, as (`left`, `right`).
2831
+ Returns the new x-axis limits as (`left`, `right`).
2833
2832
2834
2833
Notes
2835
2834
-----
@@ -3089,12 +3088,11 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False, **kw):
3089
3088
----------
3090
3089
bottom : scalar, optional
3091
3090
The bottom ylim (default: None, which leaves the bottom
3092
- limit unchanged). The previous name `ymin` may be used
3093
- instead.
3091
+ limit unchanged).
3094
3092
3095
3093
top : scalar, optional
3096
3094
The top ylim (default: None, which leaves the top limit
3097
- unchanged). The previous name `ymax` may be used instead.
3095
+ unchanged).
3098
3096
3099
3097
emit : bool, optional
3100
3098
Whether to notify observers of limit change (default: True).
@@ -3111,8 +3109,7 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False, **kw):
3111
3109
Returns
3112
3110
-------
3113
3111
ylimits : tuple
3114
- Returns the current y-axis limits, reflecting any changes
3115
- made by this call, as (`bottom`, `top`).
3112
+ Returns the new y-axis limits as (`bottom`, `top`).
3116
3113
3117
3114
Notes
3118
3115
-----
0 commit comments