summaryrefslogtreecommitdiff
path: root/Doc/extending
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2016-01-09 12:22:00 -0500
committerTerry Jan Reedy <tjreedy@udel.edu>2016-01-09 12:22:00 -0500
commit6401e795203cc9f12ab3aff4212c372a1706b3d1 (patch)
tree5efa8bb50ae6a9c573981c606ca6f21f5ed5136d /Doc/extending
parentee2a392e6a06d4334b6fb3b5a80e99471dace8a6 (diff)
downloadcpython-git-6401e795203cc9f12ab3aff4212c372a1706b3d1.tar.gz
Issue #26029: Finish correction.
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/building.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/building.rst b/Doc/extending/building.rst
index 6f1d23e708..4a30181d03 100644
--- a/Doc/extending/building.rst
+++ b/Doc/extending/building.rst
@@ -81,7 +81,7 @@ In the :file:`setup.py`, all execution is performed by calling the ``setup``
function. This takes a variable number of keyword arguments, of which the
example above uses only a subset. Specifically, the example specifies
meta-information to build packages, and it specifies the contents of the
-package. Normally, a package will contain addition modules, like Python
+package. Normally, a package will contain additional modules, like Python
source modules, documentation, subpackages, etc. Please refer to the distutils
documentation in :ref:`distutils-index` to learn more about the features of
distutils; this section explains building extension modules only.