[Python-checkins] cpython (3.4): Fix English phrasing.

r.david.murray python-checkins at python.org
Sun Nov 2 18:34:14 CET 2014


https://hg.python.org/cpython/rev/1cafcc11e719
changeset:   93356:1cafcc11e719
branch:      3.4
parent:      93353:a5dd8e89d4da
user:        R David Murray <rdmurray at bitdance.com>
date:        Sun Nov 02 12:31:47 2014 -0500
summary:
  Fix English phrasing.

files:
  Doc/library/asyncio-protocol.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -439,7 +439,7 @@
 ------------------------
 
 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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list