]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix a grammar error in the `Py_ALWAYS_INLINE` doc (GH-129304) (#132877)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 24 Apr 2025 14:27:41 +0000 (16:27 +0200)
committerGitHub <noreply@github.com>
Thu, 24 Apr 2025 14:27:41 +0000 (14:27 +0000)
Co-authored-by: Kuba_Z2 <77853483+KubaZ2@users.noreply.github.com>
Doc/c-api/intro.rst

index 8ef463e3f88ca8fb4a3cd13977d20ad744d49bec..c4b2c7898dd11b0f8f0be969e42b7febd46b215f 100644 (file)
@@ -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,