From: Kuba_Z2 <77853483+KubaZ2@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:20:48 +0000 (+0200) Subject: Fix a grammar error in the `Py_ALWAYS_INLINE` doc (#129304) X-Git-Tag: v3.14.0b1~327 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=984a314b9ff6c1953a714f21d6390926b604332d;p=thirdparty%2FPython%2Fcpython.git Fix a grammar error in the `Py_ALWAYS_INLINE` doc (#129304) --- diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index 76d7d5793428..c8c60eb9f48f 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -148,7 +148,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,