@@ -896,11 +896,10 @@ def axes(arg=None, **kwargs):
896896
897897 Returns
898898 -------
899- `~.axes.Axes` ( or a subclass of `~.axes.Axes`)
899+ `~.axes.Axes`, or a subclass of `~.axes.Axes`
900900 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.
904903
905904 Other Parameters
906905 ----------------
@@ -1023,13 +1022,12 @@ def subplot(*args, **kwargs):
10231022
10241023 Returns
10251024 -------
1026- an `.axes.SubplotBase` subclass of `~.axes.Axes` (or a subclass of \
1027- `~.axes.Axes`)
1025+ `.axes.SubplotBase`, or another subclass of `~.axes.Axes`
10281026
10291027 The axes of the subplot. The returned axes base class depends on
10301028 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
10331031 base class.
10341032
10351033 Other Parameters
@@ -1288,7 +1286,7 @@ def subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs):
12881286 Row number and column number of the axis location within the grid.
12891287 rowspan : int, default: 1
12901288 Number of rows for the axis to span to the right.
1291- colspan : int. default: 1
1289+ colspan : int, default: 1
12921290 Number of columns for the axis to span downwards.
12931291 fig : `.Figure`, optional
12941292 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):
13011299
13021300 The axes of the subplot. The returned axes base class depends on
13031301 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
13061304 base class.
13071305
13081306 Notes
0 commit comments