From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 11 Oct 2019 04:01:33 +0000 (-0700) Subject: Typo fix: "throuhgh" should be "through". (GH-16704) X-Git-Tag: v3.7.5~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49d7428c26d4e9211d14585ca8b421a2582d6366;p=thirdparty%2FPython%2Fcpython.git Typo fix: "throuhgh" should be "through". (GH-16704) (cherry picked from commit a8e0d3141e271b3c0fbb7399a911f0c3aa567e30) Co-authored-by: Hansraj Das --- diff --git a/Python/condvar.h b/Python/condvar.h index 951b8ad47f07..802d53fbe69d 100644 --- a/Python/condvar.h +++ b/Python/condvar.h @@ -194,7 +194,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). */