From 792399744f96c55ca7f8ca9a07a1309b22b11589 Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Thu, 3 Jun 2021 16:39:02 +0200 Subject: [PATCH] Fixed sentence about curio/trio --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 539b2cc..7ad1ab4 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ callback-based code (and it can't be used always, anyway). Asyncio has also a bu of problems with exception propagation and cancellation, which is an issue shared by other old libraries like tornado and gevent. -To address this problem, libraries like trio and curio were born, implementing a new +To address this problem, a couple of very smart people came up with a new paradigm called _Structured Concurrency_, which makes the async model much easier to use and reason about. The two main players in this space are trio and curio.