]> granicus.if.org Git - python/commitdiff
Minor grammatical fix.
authorBrett Cannon <bcannon@gmail.com>
Thu, 30 Oct 2003 05:42:15 +0000 (05:42 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 30 Oct 2003 05:42:15 +0000 (05:42 +0000)
Doc/lib/compiler.tex

index 0c7c06dddbe04873d5a9d8a5f9e3d1066d810d6c..d75dad7eae70486d79c0944495d7d58609d25f37 100644 (file)
@@ -89,7 +89,7 @@ package.  The interpreter detects syntax errors in two distinct
 phases.  One set of errors is detected by the interpreter's parser,
 the other set by the compiler.  The compiler package relies on the
 interpreter's parser, so it get the first phases of error checking for
-free.  It implements the second phase itself, and that implement is
+free.  It implements the second phase itself, and that implementation is
 incomplete.  For example, the compiler package does not raise an error
 if a name appears more than once in an argument list: 
 \code{def f(x, x): ...}