Skip to content

Commit 365f896

Browse files
committed
fix a few spelling errors
found via `pre-commit try-repo https://github.com/codespell-project/codespell --all-files`
1 parent f13dcac commit 365f896

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ that have helped us get this far!
11081108
0.18.1 - 2017-09-04
11091109
===================
11101110
- Only mention locking when waiting for a lock.
1111-
- Fix `IOError` during locking in timeout situtation on windows under python 2.
1111+
- Fix `IOError` during locking in timeout situation on windows under python 2.
11121112

11131113
0.18.0 - 2017-09-02
11141114
===================

pre_commit/languages/conda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def run_hook(
7777
color: bool,
7878
) -> Tuple[int, bytes]:
7979
# TODO: Some rare commands need to be run using `conda run` but mostly we
80-
# can run them withot which is much quicker and produces a better
80+
# can run them without which is much quicker and produces a better
8181
# output.
8282
# cmd = ('conda', 'run', '-p', env_dir) + hook.cmd
8383
with in_env(hook.prefix, hook.language_version):

tests/xargs_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def test_xargs_concurrency():
160160
assert ret == 0
161161
pids = stdout.splitlines()
162162
assert len(pids) == 5
163-
# It would take 0.5*5=2.5 seconds ot run all of these in serial, so if it
163+
# It would take 0.5*5=2.5 seconds to run all of these in serial, so if it
164164
# takes less, they must have run concurrently.
165165
assert elapsed < 2.5
166166

0 commit comments

Comments
 (0)