]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a grammar error in the `Py_ALWAYS_INLINE` doc (#129304)
authorKuba_Z2 <77853483+KubaZ2@users.noreply.github.com>
Thu, 24 Apr 2025 14:20:48 +0000 (16:20 +0200)
committerGitHub <noreply@github.com>
Thu, 24 Apr 2025 14:20:48 +0000 (17:20 +0300)
Doc/c-api/intro.rst

index 76d7d5793428f8db173b8ce4d8370d159197efe8..c8c60eb9f48f45ae02764053db78d9d0162e9cde 100644 (file)
@@ -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,