[Python-checkins] r85009 - python/branches/release27-maint/Doc/library/compiler.rst

georg.brandl python-checkins at python.org
Sat Sep 25 15:31:21 CEST 2010


Author: georg.brandl
Date: Sat Sep 25 15:31:21 2010
New Revision: 85009

Log:
Fix typo.

Modified:
   python/branches/release27-maint/Doc/library/compiler.rst

Modified: python/branches/release27-maint/Doc/library/compiler.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/compiler.rst	(original)
+++ python/branches/release27-maint/Doc/library/compiler.rst	Sat Sep 25 15:31:21 2010
@@ -18,7 +18,7 @@
 
 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


More information about the Python-checkins mailing list