[docs] fix some asyncio.Barrier.wait docs grammar (GH-93552)

This commit is contained in:
Thomas Grainger 2022-06-06 19:10:42 +01:00 committed by GitHub
parent 71c8f96971
commit 46fde1feb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -411,8 +411,8 @@ Barrier
...
async with barrier as position:
if position == 0:
# Only one task print this
print('End of *draining phasis*')
# Only one task prints this
print('End of *draining phase*')
This method may raise a :class:`BrokenBarrierError` exception if the
barrier is broken or reset while a task is waiting.