Issue #27895: Spelling fixes (Contributed by Ville Skyttä).

This commit is contained in:
Martin Panter 2016-09-07 12:03:06 +00:00
parent be8da9c990
commit 0be894b2f6
52 changed files with 70 additions and 70 deletions

View file

@ -238,7 +238,7 @@ _PyCOND_WAIT_MS(PyCOND_T *cv, PyMUTEX_T *cs, DWORD ms)
cv->waiting++;
PyMUTEX_UNLOCK(cs);
/* "lost wakeup bug" would occur if the caller were interrupted here,
* but we are safe because we are using a semaphore wich has an internal
* but we are safe because we are using a semaphore which has an internal
* count.
*/
wait = WaitForSingleObjectEx(cv->sem, ms, FALSE);

View file

@ -118,7 +118,7 @@ typedef struct {
} InternalFormatSpec;
#if 0
/* Occassionally useful for debugging. Should normally be commented out. */
/* Occasionally useful for debugging. Should normally be commented out. */
static void
DEBUG_PRINT_FORMAT_SPEC(InternalFormatSpec *format)
{