From b02415b10f8b7412357c82356a6c75617195f717 Mon Sep 17 00:00:00 2001 From: Michael Newman Date: Sun, 19 Jul 2026 04:54:25 -0400 Subject: [PATCH] Fix typo "interruptability" in Logging Cookbook documentation (GH-154027) (cherry picked from commit 30541f202f81ab3d3da5a6ac10c07fb6f1e4dcb4) Co-authored-by: Michael Newman --- Doc/howto/logging-cookbook.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 444fec031af9ab8..e6ccb8038ca2d5a 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1947,7 +1947,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