]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Link to property built-in in abc.rst (GH-10526)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 14 Nov 2018 00:47:31 +0000 (16:47 -0800)
committerGitHub <noreply@github.com>
Wed, 14 Nov 2018 00:47:31 +0000 (16:47 -0800)
(cherry picked from commit bf1355b4240173a306dd46e720ae4b696277bb41)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Doc/library/abc.rst

index 70710761a39555b9151e194439747818f3ceb529..c1b1e07e2a7430db1e3c68751f81ddac3f63c36c 100644 (file)
@@ -217,7 +217,7 @@ The :mod:`abc` module also provides the following decorator:
    the descriptor must identify itself as abstract using
    :attr:`__isabstractmethod__`. In general, this attribute should be ``True``
    if any of the methods used to compose the descriptor are abstract. For
-   example, Python's built-in property does the equivalent of::
+   example, Python's built-in :class:`property` does the equivalent of::
 
       class Descriptor:
           ...