From 9037697bed798254c7829e9cf4131b07fd55cf7d Mon Sep 17 00:00:00 2001 From: Andrew J Westlake Date: Sun, 8 Aug 2021 10:15:01 -0500 Subject: [PATCH] Update guide/src/ecosystem/async-await.md Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com> --- guide/src/ecosystem/async-await.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/ecosystem/async-await.md b/guide/src/ecosystem/async-await.md index 20e0a196..2479c452 100644 --- a/guide/src/ecosystem/async-await.md +++ b/guide/src/ecosystem/async-await.md @@ -454,7 +454,7 @@ Type "help", "copyright", "credits" or "license" for more information. Using `uvloop` in Rust applications is a bit trickier, but it's still possible with relatively few modifications. -> Unfortunately, we can't make use of the `#[pyo3_asyncio::::main]` attribute with non-standard event loops. This is because the `#[pyo3_asyncio::::main]` proc macro has to interact with the Python +Unfortunately, we can't make use of the `#[pyo3_asyncio::::main]` attribute with non-standard event loops. This is because the `#[pyo3_asyncio::::main]` proc macro has to interact with the Python event loop before we can install the `uvloop` policy. ```toml