[Python-checkins] cpython (3.4): Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa.

victor.stinner python-checkins at python.org
Fri Mar 21 17:17:40 CET 2014


http://hg.python.org/cpython/rev/ef4f460e3c9e
changeset:   89908:ef4f460e3c9e
branch:      3.4
parent:      89906:ab0aa412fca2
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Mar 21 17:17:15 2014 +0100
summary:
  Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa.

files:
  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
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -89,7 +89,7 @@
    .. 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()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list