[Python-checkins] doc: Fix typo in asyncio-eventloop.rst (GH-7345)

Miss Islington (bot) webhook-mailer at python.org
Sat Jun 9 19:30:19 EDT 2018


https://github.com/python/cpython/commit/055bd80fd9c10bccc2fb5ea33e8136792b8bfb9a
commit: 055bd80fd9c10bccc2fb5ea33e8136792b8bfb9a
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-06-09T16:30:16-07:00
summary:

doc: Fix typo in asyncio-eventloop.rst (GH-7345)


This is a fixup to 19a44f63c738388ef3c8515348b4ffc061dfd627
(cherry picked from commit 7e0d882a98169e6d8d1507224b83ff0264c2afee)

Co-authored-by: MarcoFalke <falke.marco at gmail.com>

files:
M Doc/library/asyncio-eventloop.rst

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index f5fd094747b8..317f3fb85c54 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`,



More information about the Python-checkins mailing list