From c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 7 Nov 2017 09:05:15 -0800 Subject: [PATCH] Fix a typo (#4323) --- Lib/asyncio/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/asyncio/constants.py b/Lib/asyncio/constants.py index e74209e149d..60ca0da75f8 100644 --- a/Lib/asyncio/constants.py +++ b/Lib/asyncio/constants.py @@ -7,6 +7,6 @@ LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 ACCEPT_RETRY_DELAY = 1 # Number of stack entries to capture in debug mode. -# The large the number, the slower the operation in debug mode -# (see extract_stack() in events.py) +# The larger the number, the slower the operation in debug mode +# (see extract_stack() in events.py). DEBUG_STACK_DEPTH = 10