Skip to content

Commit 0ea5f9a

Browse files
DOC: Fix typos (#4314)
1 parent 74b3cf7 commit 0ea5f9a

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
3D Plots
2-
--------
1+
3-D Plots
2+
---------

examples/gallery/basemaps/ternary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
at the positions listed in the first three columns of the sample dataset
99
``rock_compositions``, with default annotations and gridline spacings, using
1010
the specified labeling defined via ``alabel``, ``blabel``, and ``clabel``.
11-
Points are colored based on the values given in the fourth columns of the
11+
Points are colored based on the values given in the fourth column of the
1212
sample dataset via ``cmap=True``.
1313
"""
1414

examples/gallery/lines/vector_heads_tails.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,19 @@
1414
arrow, and **I** for plain open tail. Further append **l** or **r** (e.g.
1515
``"+bar"``) to only draw the left or right half-sides of the selected head/tail
1616
(default is both sides) or use **+l** or **+r** to apply simultaneously to both
17-
beginning and end. In this context left and right refer to the side of the
17+
beginning and end. In this context, left and right refer to the side of the
1818
vector line when viewed from the beginning point to the end point of a line
1919
segment. The angle of the vector head apex can be set using **+a**\ *angle*
2020
(default is 30). The shape of the vector head can be adjusted using
2121
**+h**\ *shape* (e.g. ``"+h0.5"``).
2222
2323
For further modifiers see :gmt-docs:`plot.html#vector-attributes`.
2424
25-
In the following we use the :meth:`pygmt.Figure.plot` method to plot vectors
25+
In the following, we use the :meth:`pygmt.Figure.plot` method to plot vectors
2626
with individual heads and tails. We must specify the modifiers (together with
2727
the vector type, here ``"v"`` for Cartesian vector, see also the
2828
:doc:`Vector types example </gallery/lines/vector_styles>`)
2929
by passing the corresponding shortcuts to the ``style`` parameter.
30-
3130
"""
3231

3332
# %%

examples/gallery/symbols/custom_symbols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
For the remaining symbols see the GMT Technical Reference
1212
:gmt-docs:`reference/custom-symbols.html`.
1313
14-
Beside these built-in custom symbols GMT allows users to define their own custom
14+
Besides these built-in custom symbols, GMT allows users to define their own custom
1515
symbols. For this, a specific macro language is used. A detailed introduction can
1616
be found at :gmt-docs:`reference/custom-symbols.html#the-macro-language`. After
1717
defining such a symbol it can be used in the same way as a built-in custom symbol.
1818
19-
*Please note*: Custom symbols can not be used in auto-legends yet.
19+
*Please note*: Custom symbols cannot be used in auto-legends yet.
2020
"""
2121

2222
# %%

examples/tutorials/advanced/3d_perspective_image.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
# The ``perspective`` azimuth can be changed to set the direction that is "up"
7777
# in the figure. The ``contour_pen`` parameter sets the pen used to draw contour
7878
# lines on the surface. :meth:`pygmt.Figure.colorbar` can be used to add a
79-
# color bar to the figure. The ``cmap`` parameter does not need to be passed
80-
# again. To keep the color bar's alignment similar to the figure, use ``True``
79+
# colorbar to the figure. The ``cmap`` parameter does not need to be passed
80+
# again. To keep the colorbar's alignment similar to the figure, use ``True``
8181
# as argument for the ``perspective`` parameter.
8282

8383
fig = pygmt.Figure()

examples/tutorials/advanced/earth_relief.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141

4242

4343
# %%
44-
# Set a color map
45-
# ---------------
44+
# Set a colormap
45+
# --------------
4646
#
4747
# :meth:`pygmt.Figure.grdimage` takes the ``cmap`` parameter to set the CPT of the
4848
# figure. Examples of common CPTs for Earth relief are shown below. A full list of CPTs
@@ -64,8 +64,8 @@
6464

6565

6666
# %%
67-
# Add a color bar
68-
# ---------------
67+
# Add a colorbar
68+
# --------------
6969
#
7070
# The :meth:`pygmt.Figure.colorbar` method displays the CPT and the associated z-values
7171
# of the figure, and by default uses the same CPT set by the ``cmap`` parameter for

0 commit comments

Comments
 (0)