diff options
| author | Andrés Delfino <adelfino@gmail.com> | 2018-11-13 21:29:57 -0300 |
|---|---|---|
| committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-13 16:29:57 -0800 |
| commit | bf1355b4240173a306dd46e720ae4b696277bb41 (patch) | |
| tree | bc2e1d890d8ecff648391412bc8dbb31ce756445 | |
| parent | daeb3c4c58663c2e2a3ddf1c2fbbff9a06269961 (diff) | |
| download | cpython-git-bf1355b4240173a306dd46e720ae4b696277bb41.tar.gz | |
Link to property built-in in abc.rst (GH-10526)
| -rw-r--r-- | Doc/library/abc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 2aba02f8cb..0a976b12ec 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: ... |
