summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorJohn Chen <johnchen902@gmail.com>2017-12-01 12:33:40 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2017-12-01 12:33:40 (GMT)
commit8f5c28b19374df47ebe3d665e54c1dda5c2d7dca (patch)
treea316fd433365e6e3656587a2e5e69e61b5bbd4a3 /Lib/asyncio
parentbf2b65e413ca5ec705c7e2f463d0d75e947588a4 (diff)
downloadcpython-8f5c28b19374df47ebe3d665e54c1dda5c2d7dca.zip
cpython-8f5c28b19374df47ebe3d665e54c1dda5c2d7dca.tar.gz
cpython-8f5c28b19374df47ebe3d665e54c1dda5c2d7dca.tar.bz2
Fix asyncio.streams.FlowControlMixin docstring typo. (#4578)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/streams.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py
index 05774e9..15c9513 100644
--- a/Lib/asyncio/streams.py
+++ b/Lib/asyncio/streams.py
@@ -154,7 +154,7 @@ class FlowControlMixin(protocols.Protocol):
"""Reusable flow control logic for StreamWriter.drain().
This implements the protocol methods pause_writing(),
- resume_reading() and connection_lost(). If the subclass overrides
+ resume_writing() and connection_lost(). If the subclass overrides
these it must call the super methods.
StreamWriter.drain() must wait for _drain_helper() coroutine.