Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9a8982b

Browse files
committed
Backport doc typo fixes from trunk.
svn path=/branches/v0_98_5_maint/; revision=6883
1 parent ba1c2c1 commit 9a8982b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

doc/users/shell.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Using matplotlib in a python shell
55
**********************************
66

77
By 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
99
to update the plot every time a single property is changed, only once
1010
after all the properties have changed.
1111

@@ -76,7 +76,7 @@ are going to need to understand what a matplotlib backend is
7676
With the TkAgg backend, that uses the Tkinter user interface toolkit,
7777
you 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
8080
up python. Then::
8181

8282
>>> from pylab import *
@@ -103,7 +103,7 @@ Controlling interactive updating
103103

104104
The *interactive* property of the pyplot interface controls whether a
105105
figure 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
107107
will 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

Comments
 (0)