[Python-checkins] asyncio.Barrier docs: Fix typo (#93371)

JelleZijlstra webhook-mailer at python.org
Mon Jun 6 10:40:00 EDT 2022


https://github.com/python/cpython/commit/8584981a5894ba79fbabbfe7e3ef37ba6f3c2f14
commit: 8584981a5894ba79fbabbfe7e3ef37ba6f3c2f14
branch: main
author: Omer Katz <omer.katz at omerkatz.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-06-06T07:39:51-07:00
summary:

asyncio.Barrier docs: Fix typo (#93371)

taks -> tasks

files:
M Doc/library/asyncio-sync.rst

diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst
index 141733ee2c800..39c666ee7b20e 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



More information about the Python-checkins mailing list