From 46fde1feb5fce0f8711ff8c0e1bab317b580d387 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 6 Jun 2022 19:10:42 +0100 Subject: [PATCH] [docs] fix some asyncio.Barrier.wait docs grammar (GH-93552) --- 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 b87b1c54bd992b..05bdf5488af143 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.