Skip to content

Commit 95da727

Browse files
committed
IMPLEMENTATION_DETAILS.md: fix typo
1 parent 00d0849 commit 95da727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/contributor/IMPLEMENTATION_DETAILS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ e.g. one thread is supposed to block on a `select` call that the other thread
223223
would unblock by operating on the selected resource. Now the second thread
224224
cannot start to run because it is waiting for the first thread to acquire the
225225
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
226+
blocking calls that the first thread would have released the GIL before and
227227
re-acquired it after that point. Since this is equivalent to just releasing and
228228
re-acquiring the GIL, we might as well always do that.
229229

0 commit comments

Comments
 (0)