summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-11-14 00:29:57 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-14 00:29:57 (GMT)
commitbf1355b4240173a306dd46e720ae4b696277bb41 (patch)
treebc2e1d890d8ecff648391412bc8dbb31ce756445
parentdaeb3c4c58663c2e2a3ddf1c2fbbff9a06269961 (diff)
downloadcpython-bf1355b4240173a306dd46e720ae4b696277bb41.zip
cpython-bf1355b4240173a306dd46e720ae4b696277bb41.tar.gz
cpython-bf1355b4240173a306dd46e720ae4b696277bb41.tar.bz2
Link to property built-in in abc.rst (GH-10526)
-rw-r--r--Doc/library/abc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
index 2aba02f..0a976b1 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -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:
...