From a6b1f812fc3e2ed25197ef264f8a08c8851f03e3 Mon Sep 17 00:00:00 2001 From: da-woods Date: Mon, 11 Aug 2025 12:18:37 +0100 Subject: [PATCH] Fix documentation of hash in PyHash_FuncDef (GH-137595) Because of a small typo, it wasn't showing up in the generated docs. (cherry picked from commit 70218b40082396d68c277667fc9bb7f87d095e3c) Co-authored-by: da-woods --- Doc/c-api/hash.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/hash.rst b/Doc/c-api/hash.rst index 00f8cb887dc7eb..b5fe93573a1456 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.