[Python-checkins] cpython (3.4): Fix incomplete sentence in asyncio docs.

andrew.svetlov python-checkins at python.org
Thu Jul 24 10:37:04 CEST 2014


http://hg.python.org/cpython/rev/f578e1d717b7
changeset:   91816:f578e1d717b7
branch:      3.4
parent:      91814:61380b00a0a2
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Thu Jul 24 11:36:33 2014 +0300
summary:
  Fix incomplete sentence in asyncio docs.

files:
  Doc/library/asyncio-eventloop.rst |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -47,8 +47,9 @@
    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()
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list