summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoger Iyengar <ri@rogeriyengar.com>2019-09-04 06:04:09 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-04 06:04:09 (GMT)
commit675d17cec49ed7f7eb01d1bc3ae6999c728e070d (patch)
tree4dbe2709af02bc3e22e2c36272a7579c9d60c5c8
parent2f09413947d1ce0043de62ed2346f9a2b4e5880b (diff)
downloadcpython-675d17cec49ed7f7eb01d1bc3ae6999c728e070d.zip
cpython-675d17cec49ed7f7eb01d1bc3ae6999c728e070d.tar.gz
cpython-675d17cec49ed7f7eb01d1bc3ae6999c728e070d.tar.bz2
Fix grammar in asyncio-dev.rst (GH-15672)
Automerge-Triggered-By: @ned-deily
-rw-r--r--Doc/library/asyncio-dev.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
index b728803..101e781 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.