We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d0849 commit 95da727Copy full SHA for 95da727
docs/contributor/IMPLEMENTATION_DETAILS.md
@@ -223,7 +223,7 @@ e.g. one thread is supposed to block on a `select` call that the other thread
223
would unblock by operating on the selected resource. Now the second thread
224
cannot start to run because it is waiting for the first thread to acquire the
225
GIL. To get around this potential deadlock, we would have to "remember" around
226
-blockig calls that the first thread would have released the GIL before and
+blocking calls that the first thread would have released the GIL before and
227
re-acquired it after that point. Since this is equivalent to just releasing and
228
re-acquiring the GIL, we might as well always do that.
229
0 commit comments