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

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


http://hg.python.org/cpython/rev/7761b3dff2e8
changeset:   89909:7761b3dff2e8
parent:      89907:44ccce3b4ca1
parent:      89908:ef4f460e3c9e
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Mar 21 17:17:28 2014 +0100
summary:
  (Merge 3.4) 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