asyncio.Barrier docs: Fix typo (GH-93371)

taks -> tasks
(cherry picked from commit 8584981a58)

Co-authored-by: Omer Katz <omer.katz@omerkatz.com>
This commit is contained in:
Miss Islington (bot) 2022-06-06 07:54:44 -07:00 committed by GitHub
parent 20be4a11fe
commit e8404f46b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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