summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-11-02 17:31:47 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-11-02 17:31:47 (GMT)
commit3ca68e77b85329da2012cca57e4b52b4ea349ad2 (patch)
tree9f79cbd1b03e7a7d5f5d42c1f6d4554cdfb0dd13 /Doc
parent58905e9ba25f36e12b9db19cd8b2a58b50f04ffe (diff)
downloadcpython-3ca68e77b85329da2012cca57e4b52b4ea349ad2.zip
cpython-3ca68e77b85329da2012cca57e4b52b4ea349ad2.tar.gz
cpython-3ca68e77b85329da2012cca57e4b52b4ea349ad2.tar.bz2
Fix English phrasing.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-protocol.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index 3f9a2c7..d72dfff 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -439,7 +439,7 @@ Coroutines and protocols
------------------------
Coroutines can be scheduled in a protocol method using :func:`async`, but there
-is not guarantee on the execution order. Protocols are not aware of coroutines
+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