@@ -5,7 +5,7 @@ Using matplotlib in a python shell
55**********************************
66
77By default, matplotlib defers drawing until the end of the script
8- because drawing can be an expensive opertation , and you may not want
8+ because drawing can be an expensive operation , and you may not want
99to update the plot every time a single property is changed, only once
1010after all the properties have changed.
1111
@@ -76,7 +76,7 @@ are going to need to understand what a matplotlib backend is
7676With the TkAgg backend, that uses the Tkinter user interface toolkit,
7777you can use matplotlib from an arbitrary python shell. Just set your
7878``backend : TkAgg `` and ``interactive : True `` in your
79- :file: matplotlibrc file (see :ref: `customizing-matplotlib `) and fire
79+ :file: ` matplotlibrc ` file (see :ref: `customizing-matplotlib `) and fire
8080up python. Then::
8181
8282 >>> from pylab import *
@@ -103,7 +103,7 @@ Controlling interactive updating
103103
104104The *interactive * property of the pyplot interface controls whether a
105105figure canvas is drawn on every pyplot command. If *interactive * is
106- *False *, then the figure state is updated on every plot commands , but
106+ *False *, then the figure state is updated on every plot command , but
107107will only be drawn on explicit calls to
108108:func: `~matplotlib.pyplot.draw `. When *interactive * is
109109*True *, then every pyplot command triggers a draw.
0 commit comments