summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2017-04-07 18:18:14 (GMT)
committerGitHub <noreply@github.com>2017-04-07 18:18:14 (GMT)
commitdd9a0a14c89d57e43898d4b866b8c161e4ff8506 (patch)
tree6b08cad2eaab9be97ff3578a9e263111ec3eb650 /Doc/library/asyncio-protocol.rst
parent150cd1916a59e750ce88c65325de9ef0c42c6cb5 (diff)
downloadcpython-dd9a0a14c89d57e43898d4b866b8c161e4ff8506.zip
cpython-dd9a0a14c89d57e43898d4b866b8c161e4ff8506.tar.gz
cpython-dd9a0a14c89d57e43898d4b866b8c161e4ff8506.tar.bz2
Fix a minor typo. (#1032)
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-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 482ffbb..3f55506 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -384,7 +384,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).