Skip to content

Commit f3d5559

Browse files
committed
FIX
1 parent 55ef3ef commit f3d5559

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/matplotlib/pyplot.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1372,14 +1372,14 @@ def subplots(nrows=1, ncols=1, *, sharex=False, sharey=False, squeeze=True,
13721372
width_ratios : array-like of length *ncols*, optional
13731373
Defines the relative widths of the columns. Each column gets a
13741374
relative width of ``width_ratios[i] / sum(width_ratios)``.
1375-
If not given, all columns will have the same width. Convenience
1376-
for ``gridspec_kw={'width_ratios': [...]}``.
1375+
If not given, all columns will have the same width. Equivalent
1376+
to ``gridspec_kw={'width_ratios': [...]}``.
13771377
13781378
height_ratios : array-like of length *nrows*, optional
13791379
Defines the relative heights of the rows. Each row gets a
13801380
relative height of ``height_ratios[i] / sum(height_ratios)``.
1381-
If not given, all rows will have the same height. Convenience
1382-
for ``gridspec_kw={'height_ratios': [...]}``.
1381+
If not given, all rows will have the same height. Equivalent
1382+
to ``gridspec_kw={'height_ratios': [...]}``.
13831383
13841384
subplot_kw : dict, optional
13851385
Dict with keywords passed to the
@@ -1532,14 +1532,14 @@ def subplot_mosaic(mosaic, *, sharex=False, sharey=False,
15321532
width_ratios : array-like of length *ncols*, optional
15331533
Defines the relative widths of the columns. Each column gets a
15341534
relative width of ``width_ratios[i] / sum(width_ratios)``.
1535-
If not given, all columns will have the same width. Convenience
1536-
for ``gridspec_kw={'width_ratios': [...]}``.
1535+
If not given, all columns will have the same width. Equivalent
1536+
to ``gridspec_kw={'width_ratios': [...]}``.
15371537
15381538
height_ratios : array-like of length *nrows*, optional
15391539
Defines the relative heights of the rows. Each row gets a
15401540
relative height of ``height_ratios[i] / sum(height_ratios)``.
1541-
If not given, all rows will have the same height. Convenience
1542-
for ``gridspec_kw={'height_ratios': [...]}``.
1541+
If not given, all rows will have the same height. Equivalent
1542+
to ``gridspec_kw={'height_ratios': [...]}``.
15431543
15441544
empty_sentinel : object, optional
15451545
Entry in the layout to mean "leave this space empty". Defaults

0 commit comments

Comments
 (0)