Skip to content

Commit 95fc4f6

Browse files
Fix some typos (#3211)
1 parent 3095700 commit 95fc4f6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
- package-ecosystem: "github-actions"
77
directory: "/"
88
schedule:
9-
# Check for updates to GitHub Actions every weekday
9+
# Check for updates to GitHub Actions on Tuesdays
1010
interval: "weekly"
1111
day: "tuesday"
1212
# Allow up to 2 open pull requests at a time

.github/workflows/ci_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
# to get the right commit hash.
159159
message="Deploy $version from $(git rev-parse --short HEAD)"
160160
cd deploy
161-
# Need to have this file so that Github doesn't try to run Jekyll
161+
# Need to have this file so that GitHub doesn't try to run Jekyll
162162
touch .nojekyll
163163
# Delete all the files and replace with our new set
164164
echo -e "\nRemoving old files from previous builds of ${version}:"

doc/changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@
858858
* Improve the DVC image diff workflow to support side-by-side comparison of modified images ([#1219](https://github.com/GenericMappingTools/pygmt/pull/1219))
859859
* Document the deprecation policy and add the deprecate_parameter decorator to deprecate parameters ([#1160](https://github.com/GenericMappingTools/pygmt/pull/1160))
860860
* Convert booleans arguments in build_arg_string, not in kwargs_to_strings ([#1125](https://github.com/GenericMappingTools/pygmt/pull/1125))
861-
* Create Github Action workflow for reporting DVC image diffs ([#1104](https://github.com/GenericMappingTools/pygmt/pull/1104))
861+
* Create GitHub Action workflow for reporting DVC image diffs ([#1104](https://github.com/GenericMappingTools/pygmt/pull/1104))
862862
* Update "GMT Dev Tests" workflow to test macOS-11.0 and pre-release Python packages ([#1105](https://github.com/GenericMappingTools/pygmt/pull/1105))
863863
* Initialize data version control for managing test images ([#1036](https://github.com/GenericMappingTools/pygmt/pull/1036))
864864
* Separate workflows for running tests and building documentation ([#1033](https://github.com/GenericMappingTools/pygmt/pull/1033))

doc/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ summarized as follows:
664664
mv baseline/*.png pygmt/tests/baseline/
665665

666666
# Generate hash for baseline image and stage the *.dvc file in git
667-
dvc status # check which files need to be added to dvc
667+
dvc status # Check which files need to be added to dvc
668668
dvc add pygmt/tests/baseline/test_logo.png
669669
git add pygmt/tests/baseline/test_logo.png.dvc
670670

pygmt/datatypes/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def to_strings(self) -> np.ndarray[Any, np.dtype[np.str_]]:
161161
# Workaround for upstream GMT bug reported in
162162
# https://github.com/GenericMappingTools/pygmt/issues/3170.
163163
msg = (
164-
"The trailing text column contains `None' values and has been replaced"
164+
"The trailing text column contains 'None' values and has been replaced "
165165
"with empty strings to avoid TypeError exceptions. "
166166
"It's likely caused by an upstream GMT API bug. "
167167
"Please consider reporting to us."

0 commit comments

Comments
 (0)