Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8edabf1

Browse files
committed
DOC [ci doc]
1 parent 1ec61c9 commit 8edabf1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/users/prev_whats_new/whats_new_3.4.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,8 @@ supxlabel and supylabel
634634
-----------------------
635635

636636
It is possible to add x- and y-labels to a whole figure, analogous to
637-
`.FigureBase.suptitle` using the new `.FigureBase.supxlabel` and
638-
`.FigureBase.supylabel` methods.
637+
`.Figure.suptitle` using the new `.Figure.supxlabel` and
638+
`.Figure.supylabel` methods.
639639

640640
.. plot::
641641

galleries/examples/subplots_axes_and_figures/gridspec_nested.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
set the position for a nested grid of subplots.
88
99
Note that the same functionality can be achieved more directly with
10-
`~.FigureBase.subfigures`; see
10+
`~.Figure.subfigures`; see
1111
:doc:`/gallery/subplots_axes_and_figures/subfigures`.
1212
1313
"""

lib/matplotlib/figure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ def _process_projection_requirements(self, *, axes_class=None, polar=False,
17311731

17321732
def get_default_bbox_extra_artists(self):
17331733
"""
1734-
Return a list of Artists typically used in `.FigureBase.get_tightbbox`.
1734+
Return a list of Artists typically used in `.Figure.get_tightbbox`.
17351735
"""
17361736
bbox_artists = [artist for artist in self.get_children()
17371737
if (artist.get_visible() and artist.get_in_layout())]

0 commit comments

Comments
 (0)