From 5dd15459ed84a23cf3ff4542fc29cb61a9dc9832 Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Fri, 4 Jun 2021 14:59:27 +0200 Subject: [PATCH] Changed curio.TaskPool to curio.TaskGroup to reflect reality --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d3b5eb..26733c5 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ reason it has 2 main issues: Curio has its own set of issues, namely: -- It allows orphaned tasks (i.e. tasks not spawned trough a `curio.TaskPool`), so it partially breaks structured concurrency +- It allows orphaned tasks (i.e. tasks not spawned trough a `curio.TaskGroup`), so it partially breaks structured concurrency - It is not a community project, sadly - Big chunks of code are completely undocumented: curio's loop is basically a black box to external code (and that's a design choice)