From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 19 May 2021 21:19:53 +0000 (-0700) Subject: [doc] Fix typo in asyncio-eventloop documentation (GH-22311) (GH-26256) X-Git-Tag: v3.10.0b2~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d16b1ae582cc4b5a2f4e8702a9c98160e44d82a;p=thirdparty%2FPython%2Fcpython.git [doc] Fix typo in asyncio-eventloop documentation (GH-22311) (GH-26256) (cherry picked from commit b66a03a49157076cb15a002aaf44a011cc79be3b) Co-authored-by: Bruno --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index ca91efec260d..f34fe09591c5 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