[Python-checkins] Typo fix: "throuhgh" should be "through". (GH-16704)

Miss Islington (bot) webhook-mailer at python.org
Fri Oct 11 00:01:39 EDT 2019


https://github.com/python/cpython/commit/08afed76051c1ae67a47b456f6b737d39bde0082
commit: 08afed76051c1ae67a47b456f6b737d39bde0082
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-10-10T21:01:33-07:00
summary:

Typo fix: "throuhgh" should be "through". (GH-16704)

(cherry picked from commit a8e0d3141e271b3c0fbb7399a911f0c3aa567e30)

Co-authored-by: Hansraj Das <raj.das.136 at gmail.com>

files:
M Python/condvar.h

diff --git a/Python/condvar.h b/Python/condvar.h
index 951b8ad47f07b..802d53fbe69da 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).
          */
 



More information about the Python-checkins mailing list