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

Skip to content

Commit 30dc21a

Browse files
committed
Apparently, I can't spell... fixing my mistakes and others in the faqs.
1 parent cee750e commit 30dc21a

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

doc/faq/howto_faq.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ where all values are in fractional (0 to 1) coordinates. See
151151
Automatically make room for tick labels
152152
----------------------------------------------------
153153

154-
In most use cases, it is enough to simpy change the subplots adjust
154+
In most use cases, it is enough to simply change the subplots adjust
155155
parameters as described in :ref:`howto-subplots-adjust`. But in some
156156
cases, you don't know ahead of time what your tick labels will be, or
157157
how large they will be (data and labels outside your control may be
@@ -232,7 +232,7 @@ When plotting time series, eg financial time series, one often wants
232232
to leave out days on which there is no data, eg weekends. By passing
233233
in dates on the x-xaxis, you get large horizontal gaps on periods when
234234
there is not data. The solution is to pass in some proxy x-data, eg
235-
evenly sampled indicies, and then use a custom formatter to format
235+
evenly sampled indices, and then use a custom formatter to format
236236
these as dates. The example below shows how to use an 'index formatter'
237237
to achieve the desired plot::
238238

@@ -650,7 +650,7 @@ or by saving to a file handle::
650650
fig.savefig(sys.stdout)
651651

652652
Here is an example using the Python Imaging Library PIL. First the figure
653-
is saved to a StringIO objectm which is then fed to PIL for further
653+
is saved to a StringIO object which is then fed to PIL for further
654654
processing::
655655

656656
import StringIO, Image

doc/faq/installing_faq.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ generate postscript images from some numerical simulations, and still
162162
others in web application servers to dynamically serve up graphs.
163163

164164
To support all of these use cases, matplotlib can target different
165-
outputs, and each of these capabililities is called a backend; the
165+
outputs, and each of these capabilities is called a backend; the
166166
"frontend" is the user facing code, ie the plotting code, whereas the
167167
"backend" does all the hard work behind-the-scenes to make the
168168
figure. There are two types of backends: user interface backends (for
@@ -209,7 +209,7 @@ For the rendering engines, one can also distinguish between `vector
209209
<http://en.wikipedia.org/wiki/Raster_graphics>`_ renderers. Vector
210210
graphics languages issue drawing commands like "draw a line from this
211211
point to this point" and hence are scale free, and raster backends
212-
generate a pixel represenation of the line whose accuracy depends on a
212+
generate a pixel representation of the line whose accuracy depends on a
213213
DPI setting.
214214

215215
Here is a summary of the matplotlib renderers (there is an eponymous
@@ -323,7 +323,7 @@ mpkd directory, which will have a name like
323323
file:`matplotlib-0.99.0.rc1-py2.5-macosx10.5.mpkg`, it will run the
324324
Installer.app, prompt you for a password if you need system wide
325325
installation privileges, and install to a directory like
326-
file:`/Library/Python/2.5/site-packages/`, again depedending on your
326+
file:`/Library/Python/2.5/site-packages/`, again depending on your
327327
python version. This directory may not be in your python path, so you
328328
should test your installation with::
329329

doc/faq/usage_faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ the axes objects are responsible for other components that handle axis
2222
labeling, ticks, title, and plot legends. A *figure* is the container
2323
for one or more axes objects.
2424

25-
Everything in matplotlib is organized in a heirarchy. At the top
26-
of the heirarchy is the matplotlib state-machine environment. This
25+
Everything in matplotlib is organized in a hierarchy. At the top
26+
of the hierarchy is the matplotlib state-machine environment. This
2727
environment is responsible for managing the figures and axes
2828
that have been created and modified by you. The behavior of the matplotlib
2929
environment is similar to MATLAB and therefore should be most familiar to

0 commit comments

Comments
 (0)