From: R David Murray Date: Sat, 14 Dec 2013 16:26:06 +0000 (-0500) Subject: #19970: fix additional typo in 3.4 asyncio docs. X-Git-Tag: v3.4.0b2~222 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=530a69fafce36317f1c83fe4998831f2d4284f3a;p=thirdparty%2FPython%2Fcpython.git #19970: fix additional typo in 3.4 asyncio docs. --- diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index c371c5686c7c..0fd456ec6df2 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -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.