From 4e9f9b8bca1fafe7b0cd844582ae3002ed3a1a6f Mon Sep 17 00:00:00 2001 From: lidong Date: Mon, 22 Apr 2024 22:09:06 +0800 Subject: [PATCH] update doc --- README.md | 2 +- doc.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a518850..893e467 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Module Docs - https://github.com/ClericPy/morebuiltins/blob/master/doc.md 2.2 `threads` - Quickly convert synchronous functions to be concurrency-able. (similar to madisonmay/Tomorrow) -2.3 `background_task` - Avoid asyncio free-flying tasks, better to use the new asyncio.TaskGroup to avoid this in 3.11+. https://github.com/python/cpython/issues/91887 +2.3 `bg_task` - Avoid asyncio free-flying tasks, better to use the new asyncio.TaskGroup to avoid this in 3.11+. https://github.com/python/cpython/issues/91887 ## 3. morebuiltins.ipc diff --git a/doc.md b/doc.md index d436f30..261c6b1 100644 --- a/doc.md +++ b/doc.md @@ -489,7 +489,7 @@ --- - 2.3 `background_task` - Avoid asyncio free-flying tasks, better to use the new asyncio.TaskGroup to avoid this in 3.11+. https://github.com/python/cpython/issues/91887 + 2.3 `bg_task` - Avoid asyncio free-flying tasks, better to use the new asyncio.TaskGroup to avoid this in 3.11+. https://github.com/python/cpython/issues/91887 Args: coro (Coroutine)