summaryrefslogtreecommitdiffstats
path: root/Doc/library/abc.rst
diff options
context:
space:
mode:
authorÉric Araujo <aeric@mtlpy.org>2012-12-08 23:35:31 (GMT)
committerÉric Araujo <aeric@mtlpy.org>2012-12-08 23:35:31 (GMT)
commit9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7 (patch)
treedb37394e90fbbcb649182cbdbffe3f12d741fd4b /Doc/library/abc.rst
parentd61926e6bef6c4d8105a2848362377dce91d7fc8 (diff)
downloadcpython-9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7.zip
cpython-9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7.tar.gz
cpython-9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7.tar.bz2
Fix a few markup/grammar nits
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r--Doc/library/abc.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
index 1048b24..dcec19a 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -126,7 +126,7 @@ This module provides the following class:
It also provides the following decorators:
-.. decorator:: abstractmethod(function)
+.. decorator:: abstractmethod
A decorator indicating abstract methods.
@@ -161,7 +161,7 @@ It also provides the following decorators:
multiple-inheritance.
-.. decorator:: abstractclassmethod(function)
+.. decorator:: abstractclassmethod
A subclass of the built-in :func:`classmethod`, indicating an abstract
classmethod. Otherwise it is similar to :func:`abstractmethod`.
@@ -176,7 +176,7 @@ It also provides the following decorators:
.. versionadded:: 3.2
-.. decorator:: abstractstaticmethod(function)
+.. decorator:: abstractstaticmethod
A subclass of the built-in :func:`staticmethod`, indicating an abstract
staticmethod. Otherwise it is similar to :func:`abstractmethod`.