From e6ca2c347c7479361206820ffe7d1ad77651ac7c Mon Sep 17 00:00:00 2001 From: Michael Newman Date: Fri, 17 Jul 2026 21:35:38 -0400 Subject: [PATCH] Fix duplicated words in Doc/library/asyncio-task.rst --- Doc/library/asyncio-task.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index d0cd241e42db26..86b8c5aa34d2fe 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -377,7 +377,7 @@ and reliable way to wait for all tasks in the group to finish. * call it from the task group body based on some condition or event * pass the task group instance to child tasks via :meth:`create_task`, allowing a child - task to conditionally cancel the entire entire group + task to conditionally cancel the entire group * pass the task group instance or bound :meth:`cancel` method to some other task *before* opening the task group, allowing remote cancellation