From: Barry Warsaw Date: Fri, 7 Apr 2017 20:50:20 +0000 (-0400) Subject: Fix a minor typo. (#1032) (#1036) X-Git-Tag: v3.5.4rc1~228 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f688f180b21679c06d5258e88c688635ed719473;p=thirdparty%2FPython%2Fcpython.git Fix a minor typo. (#1032) (#1036) (cherry picked from commit dd9a0a14c89d57e43898d4b866b8c161e4ff8506) --- diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index e0d2b0f0b6e7..2e1a11bed750 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -381,7 +381,7 @@ The following callbacks are called on :class:`Protocol` instances: .. method:: Protocol.eof_received() - Calls when the other end signals it won't send any more data + Called when the other end signals it won't send any more data (for example by calling :meth:`write_eof`, if the other end also uses asyncio).