Fix typo in thread_nt.h code comment (GH-5211) (GH-5226)

The comment for PyThread_allocate_lock says "It has too be implemented ...".
There was an extra "o" in ".. to be implemented.."
(cherry picked from commit 6027802ca7)
This commit is contained in:
Miss Islington (bot) 2018-01-17 16:40:33 -08:00 committed by Mariatta
parent 8d1e41d414
commit f31c70b0d6

View file

@ -235,7 +235,7 @@ PyThread_exit_thread(void)
}
/*
* Lock support. It has too be implemented as semaphores.
* Lock support. It has to be implemented as semaphores.
* I [Dag] tried to implement it with mutex but I could find a way to
* tell whether a thread already own the lock or not.
*/