]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix a typo in c-api/typeobj.rst (GH-132317) (#132464)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 13 Apr 2025 07:24:46 +0000 (09:24 +0200)
committerGitHub <noreply@github.com>
Sun, 13 Apr 2025 07:24:46 +0000 (07:24 +0000)
Fix a typo in c-api/typeobj.rst (GH-132317)
(cherry picked from commit f69b344e0944bd8d59d2dc4d98e988cc4dbfadf3)

Co-authored-by: Yongzi Li <1538321957@qq.com>
Doc/c-api/typeobj.rst

index f531e326862a1712ae9fec6a9736115c14e62676..93c377c54bc73bdf5ca99d4d1837b0c98fef93f8 100644 (file)
@@ -611,7 +611,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
    Note that the :c:member:`~PyVarObject.ob_size` field may later be used for
    other purposes. For example, :py:type:`int` instances use the bits of
    :c:member:`~PyVarObject.ob_size` in an implementation-defined
-   way; the underlying storage and its size should be acessed using
+   way; the underlying storage and its size should be accessed using
    :c:func:`PyLong_Export`.
 
    .. note::