Skip to content

Commit fcda0f5

Browse files
authored
Fix typo in block comment in Include/internal/pycore_condvar.h (GH-26457)
1 parent 87272b7 commit fcda0f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_condvar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ typedef CRITICAL_SECTION PyMUTEX_T;
6060
with a Semaphore.
6161
Semaphores are available on Windows XP (2003 server) and later.
6262
We use a Semaphore rather than an auto-reset event, because although
63-
an auto-resent event might appear to solve the lost-wakeup bug (race
63+
an auto-reset event might appear to solve the lost-wakeup bug (race
6464
condition between releasing the outer lock and waiting) because it
6565
maintains state even though a wait hasn't happened, there is still
6666
a lost wakeup problem if more than one thread are interrupted in the

0 commit comments

Comments
 (0)