From ad1afe7b797bb5b5f2af297610077bdee05357a4 Mon Sep 17 00:00:00 2001 From: Pengpeng Zuo Date: Sun, 23 Dec 2018 16:37:47 +0800 Subject: [PATCH] Fix typo in gthread.py --- gunicorn/workers/gthread.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gunicorn/workers/gthread.py b/gunicorn/workers/gthread.py index 257499e6..5625a91e 100644 --- a/gunicorn/workers/gthread.py +++ b/gunicorn/workers/gthread.py @@ -4,10 +4,10 @@ # See the NOTICE for more information. # design: -# a threaded worker accepts connections in the main loop, accepted -# connections are are added to the thread pool as a connection job. On -# keepalive connections are put back in the loop waiting for an event. -# If no event happen after the keep alive timeout, the connectoin is +# A threaded worker accepts connections in the main loop, accepted +# connections are added to the thread pool as a connection job. +# Keepalive connections are put back in the loop waiting for an event. +# If no event happen after the keep alive timeout, the connection is # closed. import errno