Skip to content

Commit ed78529

Browse files
committed
Fix some typos
Found using the `typos` utility
1 parent 8ba0c56 commit ed78529

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ Unreleased
453453
------
454454

455455
- Update vendored schemas: renovate (2022-07-13)
456-
- Update check-github-worfklows match rule to exclude subdirectories of the
456+
- Update check-github-workflows match rule to exclude subdirectories of the
457457
``.github/workflows/`` directory. (:issue:`113`)
458458

459459
0.17.0

docs/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ checked. The following transforms are supported:
238238
- ``azure-pipelines``:
239239
"Unpack" compile-time expressions for Azure Pipelines files, skipping them
240240
for the purposes of validation. This transformation is based on Microsoft's
241-
lanaguage-server for VSCode and how it handles expressions
241+
language-server for VSCode and how it handles expressions
242242

243243
- ``gitlab-ci``:
244244
Handle ``!reference`` tags in YAML data for gitlab-ci files. This transform

scripts/bump-version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def parse_version(s):
5555
return tuple(int(x) for x in vals)
5656

5757

58-
def comparse_versions(old_version, new_version):
58+
def compare_versions(old_version, new_version):
5959
assert parse_version(new_version) > parse_version(old_version)
6060

6161

@@ -66,7 +66,7 @@ def main():
6666
new_version = sys.argv[1]
6767
old_version = get_old_version()
6868
print(f"old = {old_version}, new = {new_version}")
69-
comparse_versions(old_version, new_version)
69+
compare_versions(old_version, new_version)
7070

7171
replace_version("pyproject.toml", 'version = "{}"', old_version, new_version)
7272
replace_version("README.md", "rev: {}", old_version, new_version)

0 commit comments

Comments
 (0)