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

(cherry picked from commit b66a03a491)

Co-authored-by: Bruno <brunogeninatti@gmail.com>
This commit is contained in:
Miss Islington (bot) 2021-05-19 14:20:10 -07:00 committed by GitHub
parent ab1c3d99f5
commit dc6526dfa2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -440,7 +440,7 @@ Opening network connections
and *local_addr* should be specified. and *local_addr* should be specified.
* *local_addr*, if given, is a ``(local_host, local_port)`` tuple used * *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*. are looked up using ``getaddrinfo()``, similarly to *host* and *port*.
* *ssl_handshake_timeout* is (for a TLS connection) the time in seconds * *ssl_handshake_timeout* is (for a TLS connection) the time in seconds
@ -518,7 +518,7 @@ Opening network connections
Other arguments: Other arguments:
* *local_addr*, if given, is a ``(local_host, local_port)`` tuple used * *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`. are looked up using :meth:`getaddrinfo`.
* *remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used * *remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used