From 2a80ede91b251d1aac2b7821441126a7bd87394e 2022-05-25 19:31:47 From: Thomas Grainger Date: 2022-05-25 19:31:47 Subject: [PATCH] fix get_event_loop typo --- diff --git a/docs/source/interactive/autoawait.rst b/docs/source/interactive/autoawait.rst index e4ed965..3b62fda 100644 --- a/docs/source/interactive/autoawait.rst +++ b/docs/source/interactive/autoawait.rst @@ -177,7 +177,7 @@ On top of the above there are significant modification to the AST of significant overhead to this kind of code. By default the generated coroutine function will be consumed by Asyncio's -``loop_runner = asyncio.get_evenloop().run_until_complete()`` method if +``loop_runner = asyncio.get_event_loop().run_until_complete()`` method if ``async`` mode is deemed necessary, otherwise the coroutine will just be exhausted in a simple runner. It is possible, though, to change the default runner.