summaryrefslogtreecommitdiffstats
path: root/Doc/library/abc.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-06-24 20:48:30 (GMT)
committerGeorg Brandl <georg@python.org>2012-06-24 20:48:30 (GMT)
commit61063cca6abe36005f6e327358d533af8a56d33c (patch)
treeebd093befdd9a90317bd95efef9525b93ce43e62 /Doc/library/abc.rst
parentf55100132288304b8e5d4798bbb7929a512e9b57 (diff)
downloadcpython-61063cca6abe36005f6e327358d533af8a56d33c.zip
cpython-61063cca6abe36005f6e327358d533af8a56d33c.tar.gz
cpython-61063cca6abe36005f6e327358d533af8a56d33c.tar.bz2
Fix a couple of versionadded/versionchanged related markup errors.
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r--Doc/library/abc.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
index 6f42222..dca6993 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -217,7 +217,7 @@ The :mod:`abc` module also provides the following decorators:
.. versionadded:: 3.2
.. deprecated:: 3.3
- Use :class:`classmethod` with :func:`abstractmethod` instead
+ Use :class:`classmethod` with :func:`abstractmethod` instead.
.. decorator:: abstractstaticmethod(function)
@@ -234,7 +234,7 @@ The :mod:`abc` module also provides the following decorators:
.. versionadded:: 3.2
.. deprecated:: 3.3
- Use :class:`staticmethod` with :func:`abstractmethod` instead
+ Use :class:`staticmethod` with :func:`abstractmethod` instead.
.. decorator:: abstractproperty(fget=None, fset=None, fdel=None, doc=None)