From fab5f3689f01b01036c16308b03cec0a1f84e4f8 Mon Sep 17 00:00:00 2001 From: Kuba_Z2 <77853483+KubaZ2@users.noreply.github.com> Date: Thu, 24 Apr 2025 16:20:48 +0200 Subject: [PATCH] Fix a grammar error in the `Py_ALWAYS_INLINE` doc (GH-129304) (cherry picked from commit 984a314b9ff6c1953a714f21d6390926b604332d) Co-authored-by: Kuba_Z2 <77853483+KubaZ2@users.noreply.github.com> --- Doc/c-api/intro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index 8ef463e3f88ca8..c4b2c7898dd11b 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -138,7 +138,7 @@ complete listing. .. c:macro:: Py_ALWAYS_INLINE Ask the compiler to always inline a static inline function. The compiler can - ignore it and decides to not inline the function. + ignore it and decide to not inline the function. It can be used to inline performance critical static inline functions when building Python in debug mode with function inlining disabled. For example,