[Python-checkins] [doc] Fix typo in asyncio-eventloop documentation (GH-22311)

iritkatriel webhook-mailer at python.org
Wed May 19 17:18:50 EDT 2021


https://github.com/python/cpython/commit/b66a03a49157076cb15a002aaf44a011cc79be3b
commit: b66a03a49157076cb15a002aaf44a011cc79be3b
branch: main
author: Bruno <brunogeninatti at gmail.com>
committer: iritkatriel <iritkatriel at yahoo.com>
date: 2021-05-19T22:18:42+01:00
summary:

[doc] Fix typo in asyncio-eventloop documentation (GH-22311)

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

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index ca91efec260db..f34fe09591c5b 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -445,7 +445,7 @@ Opening network connections
      and *local_addr* should be specified.
 
    * *local_addr*, if given, is a ``(local_host, local_port)`` tuple used
-     to bind the socket to locally.  The *local_host* and *local_port*
+     to bind the socket locally.  The *local_host* and *local_port*
      are looked up using ``getaddrinfo()``, similarly to *host* and *port*.
 
    * *ssl_handshake_timeout* is (for a TLS connection) the time in seconds
@@ -523,7 +523,7 @@ Opening network connections
    Other arguments:
 
    * *local_addr*, if given, is a ``(local_host, local_port)`` tuple used
-     to bind the socket to locally.  The *local_host* and *local_port*
+     to bind the socket locally.  The *local_host* and *local_port*
      are looked up using :meth:`getaddrinfo`.
 
    * *remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used



More information about the Python-checkins mailing list