Skip to content

Commit b0f2f34

Browse files
committed
Try and fix doc build
The two reported failues seem unrelated to the PR code. /home/circleci/project/doc/api/axes_api.rst:294:<autosummary>:1: WARNING: py:obj reference target not found: Axes.dataLim [ref.obj] /home/circleci/project/doc/api/axes_api.rst:449:<autosummary>:1: WARNING: py:obj reference target not found: AxesBase [ref.obj] Anyway, these are the places that cause the trouble. Maybe something changed in Sphinx?
1 parent d000cfe commit b0f2f34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2265,7 +2265,7 @@ def add_artist(self, a):
22652265

22662266
def add_child_axes(self, ax):
22672267
"""
2268-
Add an `.AxesBase` to the Axes' children; return the child Axes.
2268+
Add an `._AxesBase` to the Axes' children; return the child Axes.
22692269
22702270
This is the lowlevel version. See `.axes.Axes.inset_axes`.
22712271
"""
@@ -2524,7 +2524,7 @@ def relim(self, visible_only=False):
25242524

25252525
def update_datalim(self, xys, updatex=True, updatey=True):
25262526
"""
2527-
Extend the `~.Axes.dataLim` Bbox to include the given points.
2527+
Extend the `~._AxesBase.dataLim` Bbox to include the given points.
25282528
25292529
If no data is set currently, the Bbox will ignore its limits and set
25302530
the bound to be the bounds of the xydata (*xys*). Otherwise, it will

0 commit comments

Comments
 (0)