diff options
author | Barry Warsaw <barry@python.org> | 2017-04-07 20:50:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 20:50:13 (GMT) |
commit | 616d3eb7ef96f1a27bbff68fba6e5d229257d936 (patch) | |
tree | afce7f407656cb9b94607c063a148d8ca40be4c5 | |
parent | 19d61b265fabed01ebfb8eae9855f2ee59ff591b (diff) | |
download | cpython-616d3eb7ef96f1a27bbff68fba6e5d229257d936.zip cpython-616d3eb7ef96f1a27bbff68fba6e5d229257d936.tar.gz cpython-616d3eb7ef96f1a27bbff68fba6e5d229257d936.tar.bz2 |
Fix a minor typo. (#1032) (#1037)
(cherry picked from commit dd9a0a14c89d57e43898d4b866b8c161e4ff8506)
-rw-r--r-- | 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 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). |