From: Victor Stinner Date: Fri, 21 Mar 2014 16:17:15 +0000 (+0100) Subject: Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa. X-Git-Tag: v3.4.1rc1~206 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=51f3129ba2f87233006338c9c735fe4b0cc84036;p=python Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa. --- diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 80c974af06..c352403785 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()