summaryrefslogtreecommitdiffstats
path: root/Doc/faq/design.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-09-01 01:19:30 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-09-01 01:19:30 (GMT)
commit43ba3545991691403d1b4ec1d04e66053c2ddf36 (patch)
treeea63d35bdf3617c364808d809d9d877f1170b04c /Doc/faq/design.rst
parent4058211e8d8c250e39e21604b36637ebd8784e6c (diff)
downloadcpython-43ba3545991691403d1b4ec1d04e66053c2ddf36.zip
cpython-43ba3545991691403d1b4ec1d04e66053c2ddf36.tar.gz
cpython-43ba3545991691403d1b4ec1d04e66053c2ddf36.tar.bz2
Fix some misuses of Sphinx roles and one typo
Diffstat (limited to 'Doc/faq/design.rst')
-rw-r--r--Doc/faq/design.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index b9faf57..02417b1 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -667,7 +667,7 @@ construction of large programs.
Python 2.6 adds an :mod:`abc` module that lets you define Abstract Base Classes
(ABCs). You can then use :func:`isinstance` and :func:`issubclass` to check
whether an instance or a class implements a particular ABC. The
-:mod:`collections` modules defines a set of useful ABCs such as
+:mod:`collections` module defines a set of useful ABCs such as
:class:`Iterable`, :class:`Container`, and :class:`MutableMapping`.
For Python, many of the advantages of interface specifications can be obtained