@@ -162,7 +162,7 @@ def pause(interval):
162
162
Pause for *interval* seconds.
163
163
164
164
If there is an active figure it will be updated and displayed,
165
- and the gui event loop will run during the pause.
165
+ and the GUI event loop will run during the pause.
166
166
167
167
If there is no active figure, or if a non-interactive backend
168
168
is in use, this executes time.sleep(interval).
@@ -625,7 +625,7 @@ def axes(*args, **kwargs):
625
625
axis. An :class:`~matplotlib.axes.Axes` instance is returned.
626
626
627
627
======= ============ ================================================
628
- kwarg Accepts Desctiption
628
+ kwarg Accepts Description
629
629
======= ============ ================================================
630
630
axisbg color the axes background color
631
631
frameon [True|False] display the frame?
@@ -845,7 +845,7 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
845
845
array.
846
846
847
847
If *False*, no squeezing at all is done: the returned axis
848
- object is always a 2-d array contaning Axis instances, even if it
848
+ object is always a 2-d array containing Axis instances, even if it
849
849
ends up being 1x1.
850
850
851
851
*subplot_kw* : dict
@@ -898,7 +898,7 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
898
898
# same as
899
899
plt.subplots(2, 2, sharex=True, sharey=True)
900
900
"""
901
- # for backwards compatability
901
+ # for backwards compatibility
902
902
if isinstance (sharex , bool ):
903
903
if sharex :
904
904
sharex = "all"
@@ -1634,7 +1634,7 @@ def colors():
1634
1634
matplotlib handles colors.
1635
1635
1636
1636
Commands which take color arguments can use several formats to
1637
- specify the colors. For the basic builtin colors, you can use a
1637
+ specify the colors. For the basic built-in colors, you can use a
1638
1638
single letter
1639
1639
1640
1640
===== =======
@@ -1669,7 +1669,7 @@ def colors():
1669
1669
1670
1670
subplot(111, axisbg=(0.1843, 0.3098, 0.3098))
1671
1671
1672
- Here is an example that creates a pale turqoise title::
1672
+ Here is an example that creates a pale turquoise title::
1673
1673
1674
1674
title('Is this the best color?', color='#afeeee')
1675
1675
0 commit comments