]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[doc] Fix typo in asyncio-eventloop documentation (GH-22311) (GH-26257)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 19 May 2021 21:20:10 +0000 (14:20 -0700)
committerGitHub <noreply@github.com>
Wed, 19 May 2021 21:20:10 +0000 (22:20 +0100)
(cherry picked from commit b66a03a49157076cb15a002aaf44a011cc79be3b)

Co-authored-by: Bruno <brunogeninatti@gmail.com>
Doc/library/asyncio-eventloop.rst

index be43ca4aebe81a5ca4e1ff43caeb205157c41ad7..66eb3faecd896e1d801989f03fe6039b7b4920dd 100644 (file)
@@ -440,7 +440,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
@@ -518,7 +518,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