]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Doc/c-api/typeobj.rst (GH-118377)
authorXie Yanbo <xieyanbo@gmail.com>
Mon, 29 Apr 2024 10:59:38 +0000 (18:59 +0800)
committerGitHub <noreply@github.com>
Mon, 29 Apr 2024 10:59:38 +0000 (10:59 +0000)
Doc/c-api/typeobj.rst

index 1105b943325077398d5d7cb7c4c776cf7040ed40..a6a2c437ea4e16e09d9ed9b645f7d4110b201ed3 100644 (file)
@@ -1381,7 +1381,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
        Py_VISIT(Py_TYPE(self));
 
    It is only needed since Python 3.9. To support Python 3.8 and older, this
-   line must be conditionnal::
+   line must be conditional::
 
        #if PY_VERSION_HEX >= 0x03090000
            Py_VISIT(Py_TYPE(self));