summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-14 00:47:31 (GMT)
committerGitHub <noreply@github.com>2018-11-14 00:47:31 (GMT)
commit2897a04c983abe8ed4e6c2663335b5c54e86d9f5 (patch)
tree8efce87eefa2265e19accf400b58a9d077e07477 /Doc/library
parenta15e1e82c9bef8a66e7869d76bf692dee9b8fb47 (diff)
downloadcpython-2897a04c983abe8ed4e6c2663335b5c54e86d9f5.zip
cpython-2897a04c983abe8ed4e6c2663335b5c54e86d9f5.tar.gz
cpython-2897a04c983abe8ed4e6c2663335b5c54e86d9f5.tar.bz2
Link to property built-in in abc.rst (GH-10526)
(cherry picked from commit bf1355b4240173a306dd46e720ae4b696277bb41) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/library')
-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 7071076..c1b1e07 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:
...