summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-21 03:52:30 (GMT)
committerGitHub <noreply@github.com>2024-01-21 03:52:30 (GMT)
commit3681effafb0d8ac3549a55aae5bc6134cbbd485f (patch)
tree43b6132acc52120e148a73d96441c6ff43115520 /Doc
parent4913dc20908ebe21c36652d84a993bb6b7952e48 (diff)
downloadcpython-3681effafb0d8ac3549a55aae5bc6134cbbd485f.zip
cpython-3681effafb0d8ac3549a55aae5bc6134cbbd485f.tar.gz
cpython-3681effafb0d8ac3549a55aae5bc6134cbbd485f.tar.bz2
[3.11] Fix the confusing "User-defined methods" reference in the datamodel (GH-114276) (#114366)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 1f9bb82..0419ee7 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1507,7 +1507,7 @@ Class method objects
A class method object, like a static method object, is a wrapper around another
object that alters the way in which that object is retrieved from classes and
class instances. The behaviour of class method objects upon such retrieval is
-described above, under "User-defined methods". Class method objects are created
+described above, under :ref:`"instance methods" <instance-methods>`. Class method objects are created
by the built-in :func:`classmethod` constructor.