]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.8] Typo fix: "throuhgh" should be "through". (GH-16713)
authorBenjamin Peterson <benjamin@python.org>
Fri, 11 Oct 2019 04:02:38 +0000 (21:02 -0700)
committerGitHub <noreply@github.com>
Fri, 11 Oct 2019 04:02:38 +0000 (21:02 -0700)
(cherry picked from commit a8e0d3141e271b3c0fbb7399a911f0c3aa567e30)

Co-authored-by: Hansraj Das <raj.das.136@gmail.com>
Python/condvar.h

index f54adc5ea8e82974902a521dab4755384fbd4a79..8cba19b84612dc77981a788d42de77052f52e418 100644 (file)
@@ -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).
          */