From: da-woods Date: Mon, 11 Aug 2025 11:18:37 +0000 (+0100) Subject: Fix documentation of hash in PyHash_FuncDef (#137595) X-Git-Tag: v3.15.0a1~725 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70218b40082396d68c277667fc9bb7f87d095e3c;p=thirdparty%2FPython%2Fcpython.git Fix documentation of hash in PyHash_FuncDef (#137595) Because of a small typo, it wasn't showing up in the generated docs. --- diff --git a/Doc/c-api/hash.rst b/Doc/c-api/hash.rst index 00f8cb887dc7..b5fe93573a14 100644 --- a/Doc/c-api/hash.rst +++ b/Doc/c-api/hash.rst @@ -51,7 +51,7 @@ See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-hash`. Hash function definition used by :c:func:`PyHash_GetFuncDef`. - .. c::member:: Py_hash_t (*const hash)(const void *, Py_ssize_t) + .. c:member:: Py_hash_t (*const hash)(const void *, Py_ssize_t) Hash function.