From: Omer Katz Date: Mon, 6 Jun 2022 14:39:51 +0000 (+0300) Subject: asyncio.Barrier docs: Fix typo (#93371) X-Git-Tag: v3.12.0a1~1349 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8584981a5894ba79fbabbfe7e3ef37ba6f3c2f14;p=thirdparty%2FPython%2Fcpython.git asyncio.Barrier docs: Fix typo (#93371) taks -> tasks --- 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