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