From 2897a04c983abe8ed4e6c2663335b5c54e86d9f5 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 13 Nov 2018 16:47:31 -0800 Subject: Link to property built-in in abc.rst (GH-10526) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit bf1355b4240173a306dd46e720ae4b696277bb41) Co-authored-by: Andrés Delfino --- Doc/library/abc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ... -- cgit v0.12