Skip to content
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 @@ -376,7 +376,7 @@ Creating connections
callable returning a :ref:`protocol <asyncio-protocol>` instance.

This method will try to establish the connection in the background.
When successful, the it returns a ``(transport, protocol)`` pair.
When successful, it returns a ``(transport, protocol)`` pair.

Options changing how the connection is created:

Expand Down Expand Up @@ -429,7 +429,7 @@ Creating connections
efficiently.

This method will try to establish the connection in the background.
When successful, the it returns a ``(transport, protocol)`` pair.
When successful, it returns a ``(transport, protocol)`` pair.

*path* is the name of a UNIX domain socket, and is required unless a *sock*
parameter is specified. Abstract UNIX sockets, :class:`str`,
Expand Down