From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 6 Jun 2022 14:54:44 +0000 (-0700) Subject: asyncio.Barrier docs: Fix typo (GH-93371) X-Git-Tag: v3.11.0b4~224 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8404f46b3040772ecccfe475ebfb75305ef72cb;p=thirdparty%2FPython%2Fcpython.git asyncio.Barrier docs: Fix typo (GH-93371) taks -> tasks (cherry picked from commit 8584981a5894ba79fbabbfe7e3ef37ba6f3c2f14) Co-authored-by: Omer Katz --- diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 141733ee2c80..39c666ee7b20 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