Skip to content

Commit b2c6723

Browse files
committed
more typo and spelling fixes
1 parent a3ed3ab commit b2c6723

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/pylab_examples/set_and_get.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
>>> setp(line)
2222
2323
set operates on a single instance or a list of instances. If you are
24-
in quey mode introspecting the possible values, only the first
25-
instance in the sequnce is used. When actually setting values, all
24+
in query mode introspecting the possible values, only the first
25+
instance in the sequence is used. When actually setting values, all
2626
the instances will be set. Eg, suppose you have a list of two lines,
2727
the following will make both lines thicker and red
2828
@@ -52,7 +52,7 @@
5252
color = b
5353
... long listing skipped ...
5454
55-
Alisases:
55+
Aliases:
5656
5757
To reduce keystrokes in interactive mode, a number of properties
5858
have short aliases, eg 'lw' for 'linewidth' and 'mec' for

examples/pylab_examples/shading_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from matplotlib.colors import LightSource
44

55
# example showing how to make shaded relief plots
6-
# like mathematica
6+
# like Mathematica
77
# (http://reference.wolfram.com/mathematica/ref/ReliefPlot.html)
88
# or Generic Mapping Tools
99
# (http://gmt.soest.hawaii.edu/gmt/doc/gmt/html/GMT_Docs/node145.html)

examples/pylab_examples/text_rotation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
"""
3-
The way matplotlib does text layout is counter-intuituve to some, so
3+
The way matplotlib does text layout is counter-intuitive to some, so
44
this example is designed to make it a little clearer. The text is
55
aligned by it's bounding box (the rectangular box that surrounds the
66
ink rectangle). The order of operations is basically rotation then

examples/pylab_examples/text_rotation_relative_to_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
Text objects in matplotlib are normally rotated with respect to the
44
screen coordinate system (i.e., 45 degrees rotation plots text along a
5-
line that is inbetween horizontal and vertical no matter how the axes
5+
line that is in between horizontal and vertical no matter how the axes
66
are changed). However, at times one wants to rotate text with respect
77
to something on the plot. In this case, the correct angle won't be
88
the angle of that object in the plot coordinate system, but the angle

0 commit comments

Comments
 (0)