summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorHansraj Das <raj.das.136@gmail.com>2019-10-11 03:43:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2019-10-11 03:43:13 (GMT)
commita8e0d3141e271b3c0fbb7399a911f0c3aa567e30 (patch)
tree05b7376661449576e0acffddf6214492b21aa5c1 /Python
parentf900064ac4b35226caad7502abc8a7e64f1c0e9d (diff)
downloadcpython-a8e0d3141e271b3c0fbb7399a911f0c3aa567e30.zip
cpython-a8e0d3141e271b3c0fbb7399a911f0c3aa567e30.tar.gz
cpython-a8e0d3141e271b3c0fbb7399a911f0c3aa567e30.tar.bz2
Typo fix: "throuhgh" should be "through". (GH-16704)
Diffstat (limited to 'Python')
-rw-r--r--Python/condvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/condvar.h b/Python/condvar.h
index f54adc5..8cba19b 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).
*/