summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2014-07-24 08:36:33 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2014-07-24 08:36:33 (GMT)
commitca4f34366ac57d95108946b940b5292cbef9e405 (patch)
treed9f356313d9b8527e2bda84702e58279d02e4ed1 /Doc/library
parent9ff41803af8206e7e76b5feb389faf7e8767afd9 (diff)
downloadcpython-ca4f34366ac57d95108946b940b5292cbef9e405.zip
cpython-ca4f34366ac57d95108946b940b5292cbef9e405.tar.gz
cpython-ca4f34366ac57d95108946b940b5292cbef9e405.tar.bz2
Fix incomplete sentence in asyncio docs.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asyncio-eventloop.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 46af81f..b44fe75 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -47,8 +47,9 @@ Run an event loop
Stop running the event loop.
Every callback scheduled before :meth:`stop` is called will run.
- Callback scheduled after :meth:`stop` is called won't. However, those
- callbacks will run if :meth:`run_forever` is called again later.
+ Callbacks scheduled after :meth:`stop` is called will not run.
+ However, those callbacks will run if :meth:`run_forever` is called
+ again later.
.. method:: BaseEventLoop.is_closed()