Skip to content

Commit dd57fe1

Browse files
authored
Fix duplicate word. (GH-92182)
1 parent ff88f7e commit dd57fe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/asyncio-runner.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ To mitigate this issue, :mod:`asyncio` handles :const:`signal.SIGINT` as follows
139139
execution.
140140
3. When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, the custom signal handler
141141
cancels the main task by calling :meth:`asyncio.Task.cancel` which raises
142-
:exc:`asyncio.CancelledError` inside the the main task. This causes the Python stack
142+
:exc:`asyncio.CancelledError` inside the main task. This causes the Python stack
143143
to unwind, ``try/except`` and ``try/finally`` blocks can be used for resource
144144
cleanup. After the main task is cancelled, :meth:`asyncio.Runner.run` raises
145145
:exc:`KeyboardInterrupt`.

0 commit comments

Comments
 (0)