]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Fix the confusing "User-defined methods" reference in the datamodel (GH-114276...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 21 Jan 2024 03:52:04 +0000 (04:52 +0100)
committerGitHub <noreply@github.com>
Sun, 21 Jan 2024 03:52:04 +0000 (03:52 +0000)
Doc/reference/datamodel.rst

index 03dc1d698521275475d4ad80b5d55ce3a37417df..fcb65b8919bfc22f0089f4919786db055ddb03e1 100644 (file)
@@ -1524,7 +1524,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.