From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 13 Apr 2025 07:24:46 +0000 (+0200) Subject: [3.13] Fix a typo in c-api/typeobj.rst (GH-132317) (#132464) X-Git-Tag: v3.13.4~286 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=244a64244396cb1c5c04323471a22157b839ef14;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix a typo in c-api/typeobj.rst (GH-132317) (#132464) Fix a typo in c-api/typeobj.rst (GH-132317) (cherry picked from commit f69b344e0944bd8d59d2dc4d98e988cc4dbfadf3) Co-authored-by: Yongzi Li <1538321957@qq.com> --- diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index f531e326862a..93c377c54bc7 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -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::