summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2017-04-07 20:50:20 (GMT)
committerGitHub <noreply@github.com>2017-04-07 20:50:20 (GMT)
commitf688f180b21679c06d5258e88c688635ed719473 (patch)
tree0192f9982527689b5174cc2377f94d75791e8f59 /Doc/library
parent041e6006db57820dcd05f06bd15d26512c575841 (diff)
downloadcpython-f688f180b21679c06d5258e88c688635ed719473.zip
cpython-f688f180b21679c06d5258e88c688635ed719473.tar.gz
cpython-f688f180b21679c06d5258e88c688635ed719473.tar.bz2
Fix a minor typo. (#1032) (#1036)
(cherry picked from commit dd9a0a14c89d57e43898d4b866b8c161e4ff8506)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asyncio-protocol.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index e0d2b0f..2e1a11b 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).