summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-eventloop.rst
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-07-24 06:59:02 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-07-24 06:59:02 (GMT)
commit9ff41803af8206e7e76b5feb389faf7e8767afd9 (patch)
treeba17b5c721b48752764212d78c8a47c8ca158908 /Doc/library/asyncio-eventloop.rst
parentc935a9530c8583e17c5c5ceeec2097c96016e1d9 (diff)
downloadcpython-9ff41803af8206e7e76b5feb389faf7e8767afd9.zip
cpython-9ff41803af8206e7e76b5feb389faf7e8767afd9.tar.gz
cpython-9ff41803af8206e7e76b5feb389faf7e8767afd9.tar.bz2
Asyncio doc fixes: spelling, grammar, duplication.
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r--Doc/library/asyncio-eventloop.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 6fe5aa1..46af81f 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -58,13 +58,11 @@ Run an event loop
.. method:: BaseEventLoop.close()
- Close the event loop. The loop should not be running.
+ Close the event loop. The loop must not be running.
This clears the queues and shuts down the executor, but does not wait for
the executor to finish.
- The event loop must not be running.
-
This is idempotent and irreversible. No other methods should be called after
this one.