From 530a69fafce36317f1c83fe4998831f2d4284f3a Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sat, 14 Dec 2013 11:26:06 -0500 Subject: [PATCH] #19970: fix additional typo in 3.4 asyncio docs. --- Doc/library/asyncio-protocol.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index c371c5686c..0fd456ec6d 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. -- 2.40.0