@@ -1382,8 +1382,8 @@ def align_xlabels(self, axs=None):
1382
1382
1383
1383
Notes
1384
1384
-----
1385
- This assumes that ``axs`` are from the same `.GridSpec`, so that
1386
- their `.SubplotSpec` positions correspond to figure positions.
1385
+ This assumes that all Axes in ``axs`` are from the same `.GridSpec`,
1386
+ so that their `.SubplotSpec` positions correspond to figure positions.
1387
1387
1388
1388
Examples
1389
1389
--------
@@ -1444,8 +1444,8 @@ def align_ylabels(self, axs=None):
1444
1444
1445
1445
Notes
1446
1446
-----
1447
- This assumes that ``axs`` are from the same `.GridSpec`, so that
1448
- their `.SubplotSpec` positions correspond to figure positions.
1447
+ This assumes that all Axes in ``axs`` are from the same `.GridSpec`,
1448
+ so that their `.SubplotSpec` positions correspond to figure positions.
1449
1449
1450
1450
Examples
1451
1451
--------
@@ -1500,8 +1500,8 @@ def align_titles(self, axs=None):
1500
1500
1501
1501
Notes
1502
1502
-----
1503
- This assumes that ``axs`` are from the same `.GridSpec`, so that
1504
- their `.SubplotSpec` positions correspond to figure positions.
1503
+ This assumes that all Axes in ``axs`` are from the same `.GridSpec`,
1504
+ so that their `.SubplotSpec` positions correspond to figure positions.
1505
1505
1506
1506
Examples
1507
1507
--------
@@ -1544,6 +1544,11 @@ def align_labels(self, axs=None):
1544
1544
matplotlib.figure.Figure.align_xlabels
1545
1545
matplotlib.figure.Figure.align_ylabels
1546
1546
matplotlib.figure.Figure.align_titles
1547
+
1548
+ Notes
1549
+ -----
1550
+ This assumes that all Axes in ``axs`` are from the same `.GridSpec`,
1551
+ so that their `.SubplotSpec` positions correspond to figure positions.
1547
1552
"""
1548
1553
self .align_xlabels (axs = axs )
1549
1554
self .align_ylabels (axs = axs )
0 commit comments