summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-10-10 21:01:33 -0700
committerGitHub <noreply@github.com>2019-10-10 21:01:33 -0700
commit08afed76051c1ae67a47b456f6b737d39bde0082 (patch)
tree6e0b32a7a5d33a6e9d8465fd227c71a443194c35 /Python
parentf5ed41c1ae9a575e965d55c6a5e86fb59181eee8 (diff)
downloadcpython-git-08afed76051c1ae67a47b456f6b737d39bde0082.tar.gz
Typo fix: "throuhgh" should be "through". (GH-16704)
(cherry picked from commit a8e0d3141e271b3c0fbb7399a911f0c3aa567e30) Co-authored-by: Hansraj Das <raj.das.136@gmail.com>
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 951b8ad47f..802d53fbe6 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).
*/