Link to property built-in in abc.rst (GH-10526)

(cherry picked from commit bf1355b424)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-11-13 16:45:11 -08:00 committed by GitHub
parent 9fbcb1402e
commit e7a5be5cb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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:
...