]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-148067: Fix typo in asyncio event loop docs: 'signals' -> 'signal' (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 9 Apr 2026 14:07:54 +0000 (16:07 +0200)
committerGitHub <noreply@github.com>
Thu, 9 Apr 2026 14:07:54 +0000 (14:07 +0000)
Co-authored-by: TT <70463940+Herrtian@users.noreply.github.com>
Doc/library/asyncio-eventloop.rst

index 602e2faf38d0c7aa8484899731c97bcca3aed877..6fdbfce54d0d8965c2ad51b73cb36da582851589 100644 (file)
@@ -2033,7 +2033,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::