Skip to content

Fix ambiguous link targets in docs. #22433

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions lib/matplotlib/axes/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3596,15 +3596,14 @@ def get_xlim(self):

See Also
--------
set_xlim
.Axes.set_xlim
set_xbound, get_xbound
invert_xaxis, xaxis_inverted

Notes
-----
The x-axis may be inverted, in which case the *left* value will
be greater than the *right* value.

"""
return tuple(self.viewLim.intervalx)

Expand Down Expand Up @@ -3885,15 +3884,14 @@ def get_ylim(self):

See Also
--------
set_ylim
.Axes.set_ylim
set_ybound, get_ybound
invert_yaxis, yaxis_inverted

Notes
-----
The y-axis may be inverted, in which case the *bottom* value
will be greater than the *top* value.

"""
return tuple(self.viewLim.intervaly)

Expand Down