]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#19970: fix additional typo in 3.4 asyncio docs.
authorR David Murray <rdmurray@bitdance.com>
Sat, 14 Dec 2013 16:26:06 +0000 (11:26 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sat, 14 Dec 2013 16:26:06 +0000 (11:26 -0500)
Doc/library/asyncio-protocol.rst

index c371c5686c7c85248f2212bf33f6094b7db9ee02..0fd456ec6df238bb675484bcd40236e590c2d0dc 100644 (file)
@@ -649,7 +649,7 @@ TCP echo server example, send back received data and close the connection::
         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.