summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-06-09 23:09:13 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-06-09 23:09:13 (GMT)
commit7e0d882a98169e6d8d1507224b83ff0264c2afee (patch)
tree508e2c9f4d38e3d775ca32d3d472ebbe9d069a24 /Doc
parentced0adb2638e4c02945bfa82e15595918eef74f1 (diff)
downloadcpython-7e0d882a98169e6d8d1507224b83ff0264c2afee.zip
cpython-7e0d882a98169e6d8d1507224b83ff0264c2afee.tar.gz
cpython-7e0d882a98169e6d8d1507224b83ff0264c2afee.tar.bz2
doc: Fix typo in asyncio-eventloop.rst (GH-7345)
This is a fixup to 19a44f63c738388ef3c8515348b4ffc061dfd627
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-eventloop.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index f5fd094..317f3fb 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -376,7 +376,7 @@ Creating connections
callable returning a :ref:`protocol <asyncio-protocol>` instance.
This method will try to establish the connection in the background.
- When successful, the it returns a ``(transport, protocol)`` pair.
+ When successful, it returns a ``(transport, protocol)`` pair.
Options changing how the connection is created:
@@ -429,7 +429,7 @@ Creating connections
efficiently.
This method will try to establish the connection in the background.
- When successful, the it returns a ``(transport, protocol)`` pair.
+ When successful, it returns a ``(transport, protocol)`` pair.
*path* is the name of a UNIX domain socket, and is required unless a *sock*
parameter is specified. Abstract UNIX sockets, :class:`str`,