Skip to content

Commit 70c5dfb

Browse files
committed
docs: clarify asyncio operation wording in asyncio-exceptions.rst
Fixes #148541
1 parent 4286227 commit 70c5dfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/asyncio-exceptions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Exceptions
1414
.. exception:: TimeoutError
1515

1616
A deprecated alias of :exc:`TimeoutError`,
17-
raised when the operation has exceeded the given deadline.
17+
raised when the asyncio operation has exceeded the given deadline.
1818

1919
.. versionchanged:: 3.11
2020

@@ -23,7 +23,7 @@ Exceptions
2323

2424
.. exception:: CancelledError
2525

26-
The operation has been cancelled.
26+
The asyncio operation has been cancelled.
2727

2828
This exception can be caught to perform custom operations
2929
when asyncio Tasks are cancelled. In almost all situations the
@@ -52,7 +52,7 @@ Exceptions
5252

5353
.. exception:: IncompleteReadError
5454

55-
The requested read operation did not complete fully.
55+
The requested asyncio read operation did not complete fully.
5656

5757
Raised by the :ref:`asyncio stream APIs<asyncio-streams>`.
5858

0 commit comments

Comments
 (0)