summaryrefslogtreecommitdiffstats
path: root/Doc/library/compiler.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-25 13:31:21 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-25 13:31:21 (GMT)
commita0b6a49583064b1255cc2f12ad4775f1151c96ab (patch)
tree5f545108d4dda27f5479ae46f332cbf85c5fcfb9 /Doc/library/compiler.rst
parentda4fabac8744bbd9aa787b37b506695a70e768b3 (diff)
downloadcpython-a0b6a49583064b1255cc2f12ad4775f1151c96ab.zip
cpython-a0b6a49583064b1255cc2f12ad4775f1151c96ab.tar.gz
cpython-a0b6a49583064b1255cc2f12ad4775f1151c96ab.tar.bz2
Fix typo.
Diffstat (limited to 'Doc/library/compiler.rst')
-rw-r--r--Doc/library/compiler.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/compiler.rst b/Doc/library/compiler.rst
index 991628a..458e653 100644
--- a/Doc/library/compiler.rst
+++ b/Doc/library/compiler.rst
@@ -18,7 +18,7 @@ abstract syntax tree from Python source code and to generate Python
The :mod:`compiler` package is a Python source to bytecode translator written in
Python. It uses the built-in parser and standard :mod:`parser` module to
-generated a concrete syntax tree. This tree is used to generate an abstract
+generate a concrete syntax tree. This tree is used to generate an abstract
syntax tree (AST) and then Python bytecode.
The full functionality of the package duplicates the built-in compiler provided