Skip to content

Commit c6e43ff

Browse files
committed
Fix ambiguous link targets in docs.
1 parent c0c3627 commit c6e43ff

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3596,15 +3596,14 @@ def get_xlim(self):
35963596
35973597
See Also
35983598
--------
3599-
set_xlim
3599+
.Axes.set_xlim
36003600
set_xbound, get_xbound
36013601
invert_xaxis, xaxis_inverted
36023602
36033603
Notes
36043604
-----
36053605
The x-axis may be inverted, in which case the *left* value will
36063606
be greater than the *right* value.
3607-
36083607
"""
36093608
return tuple(self.viewLim.intervalx)
36103609

@@ -3885,15 +3884,14 @@ def get_ylim(self):
38853884
38863885
See Also
38873886
--------
3888-
set_ylim
3887+
.Axes.set_ylim
38893888
set_ybound, get_ybound
38903889
invert_yaxis, yaxis_inverted
38913890
38923891
Notes
38933892
-----
38943893
The y-axis may be inverted, in which case the *bottom* value
38953894
will be greater than the *top* value.
3896-
38973895
"""
38983896
return tuple(self.viewLim.intervaly)
38993897

0 commit comments

Comments
 (0)