Skip to content

[doc] Fix typo in asyncio-eventloop documentation #22311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/asyncio-eventloop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down