Skip to content

Commit

Permalink
Fix incomplete sentence in asyncio docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jul 24, 2014
1 parent 9ff4180 commit ca4f343
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Doc/library/asyncio-eventloop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit ca4f343

Please sign in to comment.