From: Andrew Svetlov Date: Thu, 24 Jul 2014 08:36:33 +0000 (+0300) Subject: Fix incomplete sentence in asyncio docs. X-Git-Tag: v3.5.0a1~1219^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca4f34366ac57d95108946b940b5292cbef9e405;p=python Fix incomplete sentence in asyncio docs. --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 46af81fa63..b44fe753b8 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()