Skip to content

Commit e6f50b0

Browse files
authored
Fix some typos (#1057)
1 parent c4117cd commit e6f50b0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

doc/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Testing your install
165165
Quick check
166166
~~~~~~~~~~~
167167

168-
To ensure that PyGMT and its depedencies are installed correctly, run the
168+
To ensure that PyGMT and its dependencies are installed correctly, run the
169169
following in your Python interpreter::
170170

171171
import pygmt

examples/projections/azim/azim_equidistant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
The projection type is set with **e** or **E**. *lon0/lat0* specifies the projection
1515
center, and the optional parameter *horizon* specifies the maximum distance to the
16-
projection center (i.e. the visibile portion of the rest of the world map) in
16+
projection center (i.e. the visible portion of the rest of the world map) in
1717
degrees <= 180° (default 180°). The size of the figure is set by *scale* or *width*.
1818
"""
1919
import pygmt

examples/projections/cyl/cyl_universal_transverse_mercator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
**u**\ *zone/scale* or **U**\ *zone/width*
1818
1919
the projection is set with **u** or **U**. *zone* sets the zone for the figure, and
20-
the figure size is set wtih *scale* or *width*.
20+
the figure size is set with *scale* or *width*.
2121
"""
2222
import pygmt
2323

examples/tutorials/regions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
#
130130
# The ``region`` can be set to include a specific area specified by the two-character
131131
# ISO 3166-1 alpha-2 convention
132-
# (for futher information: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
132+
# (for further information: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
133133

134134
fig = pygmt.Figure()
135135
fig.coast(

pygmt/datasets/earth_relief.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def load_earth_relief(resolution="01d", region=None, registration=None):
9494
if resolution not in non_tiled_resolutions + tiled_resolutions:
9595
raise GMTInvalidInput(f"Invalid Earth relief resolution '{resolution}'.")
9696

97-
# Check combination of resolution and registeration.
97+
# Check combination of resolution and registration.
9898
if (resolution == "15s" and registration == "gridline") or (
9999
resolution in ("03s", "01s") and registration == "pixel"
100100
):

pygmt/helpers/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
- **q** - Quiet, not even fatal error messages are produced
4747
- **e** - Error messages only
4848
- **w** - Warnings [Default]
49-
- **t** - Timings (report runtimes for time-intensive algorthms);
49+
- **t** - Timings (report runtimes for time-intensive algorithms);
5050
- **i** - Informational messages (same as ``verbose=True``)
5151
- **c** - Compatibility warnings
5252
- **d** - Debugging messages""",

pygmt/tests/test_session_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_gmt_compat_6_is_applied(capsys):
3131
"""
3232
end() # Kill the global session
3333
try:
34-
# Generate a gmt.conf file in the currenty directory
34+
# Generate a gmt.conf file in the current directory
3535
# with GMT_COMPATIBILITY = 5
3636
with Session() as lib:
3737
lib.call_module("gmtset", "GMT_COMPATIBILITY 5")

0 commit comments

Comments
 (0)