@@ -896,11 +896,10 @@ def axes(arg=None, **kwargs):
896
896
897
897
Returns
898
898
-------
899
- `~.axes.Axes` ( or a subclass of `~.axes.Axes`)
899
+ `~.axes.Axes`, or a subclass of `~.axes.Axes`
900
900
The returned axes class depends on the projection used. It is
901
- `~.axes.Axes` if rectilinear projection are used and
902
- `.projections.polar.PolarAxes` if polar projection
903
- are used.
901
+ `~.axes.Axes` if rectilinear projection is used and
902
+ `.projections.polar.PolarAxes` if polar projection is used.
904
903
905
904
Other Parameters
906
905
----------------
@@ -1023,13 +1022,12 @@ def subplot(*args, **kwargs):
1023
1022
1024
1023
Returns
1025
1024
-------
1026
- an `.axes.SubplotBase` subclass of `~.axes.Axes` (or a subclass of \
1027
- `~.axes.Axes`)
1025
+ `.axes.SubplotBase`, or another subclass of `~.axes.Axes`
1028
1026
1029
1027
The axes of the subplot. The returned axes base class depends on
1030
1028
the projection used. It is `~.axes.Axes` if rectilinear projection
1031
- are used and `.projections.polar.PolarAxes` if polar projection
1032
- are used. The returned axes is then a subplot subclass of the
1029
+ is used and `.projections.polar.PolarAxes` if polar projection
1030
+ is used. The returned axes is then a subplot subclass of the
1033
1031
base class.
1034
1032
1035
1033
Other Parameters
@@ -1288,7 +1286,7 @@ def subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs):
1288
1286
Row number and column number of the axis location within the grid.
1289
1287
rowspan : int, default: 1
1290
1288
Number of rows for the axis to span to the right.
1291
- colspan : int. default: 1
1289
+ colspan : int, default: 1
1292
1290
Number of columns for the axis to span downwards.
1293
1291
fig : `.Figure`, optional
1294
1292
Figure to place the subplot in. Defaults to the current figure.
@@ -1301,8 +1299,8 @@ def subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs):
1301
1299
1302
1300
The axes of the subplot. The returned axes base class depends on
1303
1301
the projection used. It is `~.axes.Axes` if rectilinear projection
1304
- are used and `.projections.polar.PolarAxes` if polar projection
1305
- are used. The returned axes is then a subplot subclass of the
1302
+ is used and `.projections.polar.PolarAxes` if polar projection
1303
+ is used. The returned axes is then a subplot subclass of the
1306
1304
base class.
1307
1305
1308
1306
Notes
0 commit comments