From 51f3129ba2f87233006338c9c735fe4b0cc84036 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 21 Mar 2014 17:17:15 +0100 Subject: [PATCH] Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa. --- 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 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() -- 2.40.0