From: Yongzi Li <1538321957@qq.com> Date: Sun, 13 Apr 2025 07:18:58 +0000 (+0800) Subject: Fix a typo in c-api/typeobj.rst (#132317) X-Git-Tag: v3.14.0b1~508 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f69b344e0944bd8d59d2dc4d98e988cc4dbfadf3;p=thirdparty%2FPython%2Fcpython.git Fix a typo in c-api/typeobj.rst (#132317) --- diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 6d2201d02f68..3b9f07778d5a 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::