]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-148067: Fix typo in asyncio event loop docs: 'signals' -> 'signal' (#148073)
authorTT <70463940+Herrtian@users.noreply.github.com>
Sat, 4 Apr 2026 10:32:58 +0000 (12:32 +0200)
committerGitHub <noreply@github.com>
Sat, 4 Apr 2026 10:32:58 +0000 (16:02 +0530)
Doc/library/asyncio-eventloop.rst

index d1a5b4e7b4638eb20c5ea8e7be15fa6a56aec8b5..79c9516cda2d60b05b2946ee920159e8d5f82c76 100644 (file)
@@ -2055,7 +2055,7 @@ Wait until a file descriptor received some data using the
 Set signal handlers for SIGINT and SIGTERM
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-(This ``signals`` example only works on Unix.)
+(This ``signal`` example only works on Unix.)
 
 Register handlers for signals :const:`~signal.SIGINT` and :const:`~signal.SIGTERM`
 using the :meth:`loop.add_signal_handler` method::