Skip to content

Commit bc6bb31

Browse files
committed
DOC
1 parent 78d634f commit bc6bb31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/api/next_api_changes/behavior/18356-JMK.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New `.Axes3D` objects previously added themselves to figures when they were
55
created, which lead to them being added twice if
66
``fig.add_subplot(111, projection='3d')`` was called. Now ``ax = Axes3d(fig)``
77
will need to be explicitly added to the figure with ``fig.add_axes(ax)``, as
8-
also needs to be done for normal `.Axes`.
8+
also needs to be done for normal `axes.Axes`.

examples/subplots_axes_and_figures/subplots_demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
# Still there remains an unused empty space between the subplots.
145145
#
146146
# To precisely control the positioning of the subplots, one can explicitly
147-
# create a `.GridSpec` with `.add_gridspec`, and then call its
147+
# create a `.GridSpec` with `Figure.add_gridspec`, and then call its
148148
# `~.GridSpecBase.subplots` method. For example, we can reduce the height
149149
# between vertical subplots using ``add_gridspec(hspace=0)``.
150150
#

0 commit comments

Comments
 (0)