From fd4dad5ccafa1e26606acddbce4eb96fab00cd9f Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 6 Jun 2022 11:51:13 -0700 Subject: [PATCH] [docs] fix some asyncio.Barrier.wait docs grammar (GH-93552) (GH-93553) (cherry picked from commit 46fde1feb5fce0f8711ff8c0e1bab317b580d387) Co-authored-by: Thomas Grainger --- Doc/library/asyncio-sync.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index b87b1c54bd99..05bdf5488af1 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -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. -- 2.47.3