]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
asyncio.Barrier docs: Fix typo (#93371)
authorOmer Katz <omer.katz@omerkatz.com>
Mon, 6 Jun 2022 14:39:51 +0000 (17:39 +0300)
committerGitHub <noreply@github.com>
Mon, 6 Jun 2022 14:39:51 +0000 (07:39 -0700)
taks -> tasks

Doc/library/asyncio-sync.rst

index 141733ee2c8001fe1821a8f0ceb7ecc252459554..39c666ee7b20e4884bd4399285f967ca141e3371 100644 (file)
@@ -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