summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-19 01:53:51 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-19 01:53:51 (GMT)
commit87552785c3f5e80dea44b170e790d7d29602e758 (patch)
treec138ce8df3151b2db59865c9e7d215672baed478 /Doc
parent24d6cc6f4f9872a486d47355e577d1bf3e033415 (diff)
downloadcpython-87552785c3f5e80dea44b170e790d7d29602e758.zip
cpython-87552785c3f5e80dea44b170e790d7d29602e758.tar.gz
cpython-87552785c3f5e80dea44b170e790d7d29602e758.tar.bz2
Mark abc.abstractproperty as a property
Diffstat (limited to 'Doc')
-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 2776dbf..5afc847 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -194,7 +194,7 @@ It also provides the following decorators:
.. versionadded:: 3.2
-.. function:: abstractproperty(fget=None, fset=None, fdel=None, doc=None)
+.. decorator:: abstractproperty(fget=None, fset=None, fdel=None, doc=None)
A subclass of the built-in :func:`property`, indicating an abstract property.