#19970: fix additional typo in 3.4 asyncio docs.

This commit is contained in:
R David Murray 2013-12-14 11:26:06 -05:00
parent f483b0f3a9
commit 530a69fafc

View 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.