From 1190e36f3599e91ec234414afecd9178c2453185 Mon Sep 17 00:00:00 2001 From: Hansraj Das Date: Fri, 11 Oct 2019 00:28:59 +0530 Subject: [PATCH] Typo fix - throuhgh should be through --- Python/condvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/condvar.h b/Python/condvar.h index f54adc5ea8e8297..8cba19b84612dc7 100644 --- a/Python/condvar.h +++ b/Python/condvar.h @@ -178,7 +178,7 @@ _PyCOND_WAIT_MS(PyCOND_T *cv, PyMUTEX_T *cs, DWORD ms) * just means an extra spurious wakeup for a waiting thread. * ('waiting' corresponds to the semaphore's "negative" count and * we may end up with e.g. (waiting == -1 && sem.count == 1). When - * a new thread comes along, it will pass right throuhgh, having + * a new thread comes along, it will pass right through, having * adjusted it to (waiting == 0 && sem.count == 0). */