@@ -56,7 +56,7 @@ class _AxesStack(cbook.Stack):
56
56
Specialization of `.Stack`, to handle all tracking of `~.axes.Axes` in a
57
57
`.Figure`.
58
58
59
- This stack stores ``key, (ind, Axes )`` pairs, where:
59
+ This stack stores ``key, (ind, axes )`` pairs, where:
60
60
61
61
* **key** is a hash of the args and kwargs used in generating the Axes.
62
62
* **ind** is a serial index tracking the order in which Axes were added.
@@ -141,7 +141,7 @@ def add(self, key, a):
141
141
142
142
def current_key_axes (self ):
143
143
"""
144
- Return a tuple of ``(key, Axes )`` for the active Axes.
144
+ Return a tuple of ``(key, axes )`` for the active Axes.
145
145
146
146
If no Axes exists on the stack, then returns ``(None, None)``.
147
147
"""
@@ -295,7 +295,7 @@ def autofmt_xdate(
295
295
"""
296
296
Date ticklabels often overlap, so it is useful to rotate them
297
297
and right align them. Also, a common use case is a number of
298
- subplots with shared x-axes where the x-axis is date data. The
298
+ subplots with shared x-axis where the x-axis is date data. The
299
299
ticklabels are often long, and it helps to rotate them on the
300
300
bottom subplot and turn them off on other subplots, as well as
301
301
turn off xlabels.
0 commit comments