diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-14 16:26:06 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-14 16:26:06 (GMT) |
commit | 530a69fafce36317f1c83fe4998831f2d4284f3a (patch) | |
tree | 4687df27d8d154fd01582af664d5f32c523967be | |
parent | f483b0f3a92d1414efac102d8210dbfd307d037c (diff) | |
download | cpython-530a69fafce36317f1c83fe4998831f2d4284f3a.zip cpython-530a69fafce36317f1c83fe4998831f2d4284f3a.tar.gz cpython-530a69fafce36317f1c83fe4998831f2d4284f3a.tar.bz2 |
#19970: fix additional typo in 3.4 asyncio docs.
-rw-r--r-- | 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 index c371c56..0fd456e 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. |