]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in block comment in Include/internal/pycore_condvar.h (GH-26457)
authorRishi <rishi_devan@mail.com>
Tue, 1 Jun 2021 21:30:05 +0000 (23:30 +0200)
committerGitHub <noreply@github.com>
Tue, 1 Jun 2021 21:30:05 +0000 (18:30 -0300)
Include/internal/pycore_condvar.h

index 8b89d709510a3382a94e919f4d8ee56f7f1c21a0..edb7dc8193cb8af9a6e2f53955710a8714d3c5b1 100644 (file)
@@ -60,7 +60,7 @@ typedef CRITICAL_SECTION PyMUTEX_T;
    with a Semaphore.
    Semaphores are available on Windows XP (2003 server) and later.
    We use a Semaphore rather than an auto-reset event, because although
-   an auto-resent event might appear to solve the lost-wakeup bug (race
+   an auto-reset event might appear to solve the lost-wakeup bug (race
    condition between releasing the outer lock and waiting) because it
    maintains state even though a wait hasn't happened, there is still
    a lost wakeup problem if more than one thread are interrupted in the