]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo "interruptability" in Logging Cookbook documentation (#154027)
authorMichael Newman <michael.b.newman@gmail.com>
Sun, 19 Jul 2026 08:54:25 +0000 (04:54 -0400)
committerGitHub <noreply@github.com>
Sun, 19 Jul 2026 08:54:25 +0000 (10:54 +0200)
Doc/howto/logging-cookbook.rst

index 87025814aafb9abf10d8def1cc135aeacc8ef1b8..2ff221cf258eda50e57676f0d5e8a09ff66d664f 100644 (file)
@@ -1955,7 +1955,7 @@ Subclass ``QueueListener``
     class NNGSocketListener(logging.handlers.QueueListener):
 
         def __init__(self, uri, /, *handlers, **kwargs):
-            # Have a timeout for interruptability, and open a
+            # Have a timeout for interruptibility, and open a
             # subscriber socket
             socket = pynng.Sub0(listen=uri, recv_timeout=500)
             # The b'' subscription matches all topics