diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-21 16:17:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-21 16:17:15 (GMT) |
commit | 51f3129ba2f87233006338c9c735fe4b0cc84036 (patch) | |
tree | 57aaa822f522965c5f28c7ae74709e5e691bdfba /Doc/library/asyncio-protocol.rst | |
parent | 6bc239619ce93840ac3a3379dcbb32baa8e94e0e (diff) | |
download | cpython-51f3129ba2f87233006338c9c735fe4b0cc84036.zip cpython-51f3129ba2f87233006338c9c735fe4b0cc84036.tar.gz cpython-51f3129ba2f87233006338c9c735fe4b0cc84036.tar.bz2 |
Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa.
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-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 80c974a..c352403 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -89,7 +89,7 @@ ReadTransport .. method:: pause_reading() Pause the receiving end of the transport. No data will be passed to - the protocol's :meth:`data_received` method until meth:`resume_reading` + the protocol's :meth:`data_received` method until :meth:`resume_reading` is called. .. method:: resume_reading() |