gh-93124: Fix typos in comments (GH-93125)

Fixes #93124

Automerge-Triggered-By: GH:rhettinger
This commit is contained in:
Akuli 2022-05-25 18:34:14 +03:00 committed by GitHub
parent 1f134e96ba
commit a4974003ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -1271,7 +1271,7 @@ class BarrierTests(unittest.IsolatedAsyncioTestCase):
# catch here waiting tasks
results1.append(True)
else:
# here drained task ouside the barrier
# here drained task outside the barrier
if rest_of_tasks == barrier._count:
# tasks outside the barrier
await barrier.reset()
@ -1377,7 +1377,7 @@ class BarrierTests(unittest.IsolatedAsyncioTestCase):
# last task exited from barrier
await barrier.reset()
# wit here to reach the `parties`
# wait here to reach the `parties`
await barrier.wait()
else:
try: