summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asyncio/streams.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/asyncio/streams.py b/asyncio/streams.py
index f01f862..cd0c4ff 100644
--- a/asyncio/streams.py
+++ b/asyncio/streams.py
@@ -21,7 +21,7 @@ def open_connection(host=None, port=None, *,
"""A wrapper for create_connection() returning a (reader, writer) pair.
The reader returned is a StreamReader instance; the writer is a
- Transport.
+ StreamWriter instance.
The arguments are all the usual arguments to create_connection()
except protocol_factory; most common are positional host and port,