Skip to content

Commit 07820ee

Browse files
committed
corrected typos
1 parent 153a92d commit 07820ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/gallery/line/vectors.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
Cartesian, circular and geographic. While their use is slightly different,
77
they all share common modifiers that affect how they are displayed.
88
We must specify the vector type and the modifiers by passing the corresponding
9-
shortcuts listed below to the ``style``` argument. Additionally, we must define
9+
shortcuts listed below to the ``style`` argument. Additionally, we must define
1010
the vector directions (angle and length, azimuth and length, or x and y
1111
components) via the ``direction`` argument.
1212
1313
The following vectors are available:
1414
1515
- **v**: cartesian
16-
- **m**: circular
16+
- **m**: circular (math angle arc)
1717
- **=**: geographic
1818
1919
Upper-case versions **V** and **M** are similar to **v** and **m** but expect geographic
@@ -35,7 +35,7 @@
3535
idx = 1
3636

3737
for vecstyle in [
38-
"v0.5c+e", # (1) simple vector with arrow head at the end
38+
"v0.5c+e", # (1) simple vector (angle of 0 degrees and length of 4) with arrow head at the end
3939
"v0.3c+bc+ea+a80", # (2) vector with arrow head at the end and a circle at the beginning
4040
"v0.3c+bt+et+a80", # (3) vector with terminal lines at beginning and end
4141
"v0.85c+bi+ea+h0.5", # (4) vector with tail at the beginning and an arrow with modified vector head at the end
@@ -55,7 +55,7 @@
5555
vectorsv = [
5656
["v1.2c+e+b+h0.5", "lightgreen", "4p,seagreen"], # (6)
5757
["v1.2c+bi+eA+h0.2", "lightblue", "2p,dodgerblue4"], # (7)
58-
["v1.3c+bi+ea+h0.4+r", "orchid", "2p,darkmagenta"], # (8)
58+
["v1.3c+bi+ea+h0.4+r", "white", "2p,darkmagenta"], # (8)
5959
]
6060

6161
for vector in vectorsv:

0 commit comments

Comments
 (0)