From 7fbb4312a65ec31e87b3ae03609bcca52814cd8a Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Mon, 6 Jun 2022 17:39:51 +0300 Subject: [PATCH] asyncio.Barrier docs: Fix typo (GH-93371) taks -> tasks (cherry picked from commit 8584981a5894ba79fbabbfe7e3ef37ba6f3c2f14) Co-authored-by: Omer Katz --- Doc/library/asyncio-sync.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 141733ee2c8001..39c666ee7b20e4 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -429,7 +429,7 @@ Barrier Put the barrier into a broken state. This causes any active or future calls to :meth:`wait` to fail with the :class:`BrokenBarrierError`. - Use this for example if one of the taks needs to abort, to avoid infinite + Use this for example if one of the tasks needs to abort, to avoid infinite waiting tasks. .. attribute:: parties