]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Link to property built-in in abc.rst (GH-10526)
authorAndrés Delfino <adelfino@gmail.com>
Wed, 14 Nov 2018 00:29:57 +0000 (21:29 -0300)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 14 Nov 2018 00:29:57 +0000 (16:29 -0800)
Doc/library/abc.rst

index 2aba02f8cb49132a9a9d56028055d9592842106d..0a976b12ecb9b6af011d1fc07db774b96bc90d6a 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:
           ...