[Python-checkins] cpython: #19970: fix additional typo in 3.4 asyncio docs.

r.david.murray python-checkins at python.org
Sat Dec 14 17:26:23 CET 2013


http://hg.python.org/cpython/rev/561822250761
changeset:   87952:561822250761
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Dec 14 11:26:06 2013 -0500
summary:
  #19970: fix additional typo in 3.4 asyncio docs.

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
@@ -649,7 +649,7 @@
         server.close()
         loop.close()
 
-:meth:`Transport.close` can be called immediatly after
+:meth:`Transport.close` can be called immediately after
 :meth:`WriteTransport.write` even if data are not sent yet on the socket: both
 methods are asynchronous. ``yield from`` is not needed because these transport
 methods don't return coroutines.

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


More information about the Python-checkins mailing list