]> granicus.if.org Git - python/commitdiff
Reflow paragraph.
authorR David Murray <rdmurray@bitdance.com>
Sun, 2 Nov 2014 17:32:26 +0000 (12:32 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sun, 2 Nov 2014 17:32:26 +0000 (12:32 -0500)
Doc/library/asyncio-protocol.rst

index d72dfffd65c7089f70272d5a44bd6804c263daed..60776d1e9e30b87e67e6686e6814d16977eb65ea 100644 (file)
@@ -439,8 +439,8 @@ Coroutines and protocols
 ------------------------
 
 Coroutines can be scheduled in a protocol method using :func:`async`, but there
-is no guarantee made about the execution order.  Protocols are not aware of coroutines
-created in protocol methods and so will not wait for them.
+is no guarantee made about the execution order.  Protocols are not aware of
+coroutines created in protocol methods and so will not wait for them.
 
 To have a reliable execution order, use :ref:`stream objects <asyncio-streams>` in a
 coroutine with ``yield from``. For example, the :meth:`StreamWriter.drain`