From 88daea1deea7a354fc3f05d89c50956f97d8609f Mon Sep 17 00:00:00 2001 From: Roger Iyengar Date: Tue, 3 Sep 2019 23:40:36 -0400 Subject: [PATCH] Fix grammar in asyncio-dev.rst --- Doc/library/asyncio-dev.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index b72880361929796..101e7817a95e98e 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -119,7 +119,7 @@ all concurrent asyncio Tasks and IO operations would be delayed by 1 second. An executor can be used to run a task in a different thread or even in -a different process to avoid blocking block the OS thread with the +a different process to avoid blocking the OS thread with the event loop. See the :meth:`loop.run_in_executor` method for more details.