From 6faaa702fa2e1ab76cd69dffbe292d0c6dfa60d2 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Tue, 30 Jun 2020 17:58:35 -0400 Subject: [PATCH] Proofreading --- _posts/2020-06-29-release-the-gil-pt.-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2020-06-29-release-the-gil-pt.-2.md b/_posts/2020-06-29-release-the-gil-pt.-2.md index 6a8d8e7..7c0c61a 100644 --- a/_posts/2020-06-29-release-the-gil-pt.-2.md +++ b/_posts/2020-06-29-release-the-gil-pt.-2.md @@ -103,7 +103,7 @@ N = 1_000_000_000; from speiceio_pybind11 import fibonacci_gil, fibonacci_nogil ``` -Even though two threads are used, the GIL prevents those threads from running in parallel: +In the first example, even though two threads are used, the GIL constrains code to run in serial: ```python %%time