From 39d87b54715197ca9dcb6902bb43461c0ed701a2 Mon Sep 17 00:00:00 2001 From: Min ho Kim Date: Sat, 31 Aug 2019 06:21:19 +1000 Subject: Fix typos mostly in comments, docs and test names (GH-15209) --- Lib/asyncio/streams.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/asyncio/streams.py') diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py index e56e2efe5c..33b2fa5567 100644 --- a/Lib/asyncio/streams.py +++ b/Lib/asyncio/streams.py @@ -71,7 +71,7 @@ def connect(host=None, port=None, *, ssl_handshake_timeout=None, happy_eyeballs_delay=None, interleave=None): # Design note: - # Don't use decorator approach but exilicit non-async + # Don't use decorator approach but explicit non-async # function to fail fast and explicitly # if passed arguments don't match the function signature return _ContextManagerHelper(_connect(host, port, limit, @@ -442,7 +442,7 @@ if hasattr(socket, 'AF_UNIX'): ssl_handshake_timeout=None): """Similar to `connect()` but works with UNIX Domain Sockets.""" # Design note: - # Don't use decorator approach but exilicit non-async + # Don't use decorator approach but explicit non-async # function to fail fast and explicitly # if passed arguments don't match the function signature return _ContextManagerHelper(_connect_unix(path, -- cgit v1.2.1