From a5480630230031d6a931ccb158e0078435d260fc Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Fri, 26 Jul 2024 10:39:45 -0600 Subject: [PATCH] typo fix --- docs/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/debugging.md b/docs/debugging.md index 63e6b10..b97ed20 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -270,7 +270,7 @@ static_assert(COLD_EXIT_INITIAL_VALUE > ADAPTIVE_COOLDOWN_VALUE, int ``` -Free-threading support on Cython relies CPython internals. In particular, Cython +Free-threading support in Cython relies CPython internals. In particular, Cython will generate code that in some situations includes an internal CPython header, `pycore_frame.h`. This header, in turn, includes another header `pycore_code.h` that makes use of `static_assert`, a construct defined in the C11 standard. This