]> granicus.if.org Git - python/commitdiff
Fix incomplete sentence in asyncio docs.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 24 Jul 2014 08:36:33 +0000 (11:36 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 24 Jul 2014 08:36:33 +0000 (11:36 +0300)
Doc/library/asyncio-eventloop.rst

index 46af81fa6353305d12c2949f211a812a8cd638e7..b44fe753b80be1c47f4dde56386b193333ebe67e 100644 (file)
@@ -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()