8000 Fix docs error · matplotlib/matplotlib@415763e · GitHub
[go: up one dir, main page]

Skip to content

Commit 415763e

Browse files
Fix docs error
1 parent e5b91d2 commit 415763e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def set_xbound(self, lower=None, upper=None, view_margin=None):
717717
is not modified.
718718
view_margin : float or None
719719
The margin to apply to the bounds. If *None*, the margin is handled
720-
by `set_xlim`.
720+
by `.set_xlim`.
721721
722722
See Also
723723
--------
@@ -742,7 +742,7 @@ def set_ybound(self, lower=None, upper=None, view_margin=None):
742742
is not modified.
743743
view_margin : float or None
744744
The margin to apply to the bounds. If *None*, the margin is handled
745-
by `set_ylim`.
745+
by `.set_ylim`.
746746
747747
See Also
748748
--------
@@ -767,7 +767,7 @@ def set_zbound(self, lower=None, upper=None, view_margin=None):
767767
is not modified.
768768
view_margin : float or None
769769
The margin to apply to the bounds. If *None*, the margin is handled
770-
by `set_zlim`.
770+
by `.set_zlim`.
771771
772772
See Also
773773
--------
@@ -817,7 +817,7 @@ def set_xlim(self, left=None, right=None, *, emit=True, auto=False,
817817
"""
818818
Set 3D x limits.
819819
820-
See `~.Axes.set_xlim` for full documentation
820+
See `._set_lim3d` for full documentation
821821
"""
822822
return self._set_lim3d(self.xaxis, left, right, emit=emit, auto=auto,
823823
view_margin=view_margin, axmin=xmin, axmax=xmax)
@@ -827,7 +827,7 @@ def set_ylim(self, bottom=None, top=None, *, emit=True, auto=False,
827827
"""
828828
Set 3D y limits.
829829
830-
See `~.Axes.set_ylim` for full documentation
830+
See `._set_lim3d` for full documentation
831831
"""
832832
return self._set_lim3d(self.yaxis, bottom, top, emit=emit, auto=auto,
833833
view_margin=view_margin, axmin=ymin, axmax=ymax)
@@ -837,7 +837,7 @@ def set_zlim(self, bottom=None, top=None, *, emit=True, auto=False,
837837
"""
838838
Set 3D z limits.
839839
840-
See `~.Axes.set_ylim` for full documentation
840+
See `._set_lim3d` for full documentation
841841
"""
842842
return self._set_lim3d(self.zaxis, bottom, top, emit=emit, auto=auto,
843843
view_margin=view_margin, axmin=zmin, axmax=zmax)

0 commit comments

Comments
 (0)
0