summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2003-10-30 05:42:15 (GMT)
committerBrett Cannon <bcannon@gmail.com>2003-10-30 05:42:15 (GMT)
commit82b24827f64198e0950beb6ba4434d6b2dda5318 (patch)
tree4e0fdb0118b49b0142e8255a527429ef9133cd75 /Doc
parentc40b7afee28fb928fdc3f07a9a7e9d4ef17347ba (diff)
downloadcpython-82b24827f64198e0950beb6ba4434d6b2dda5318.zip
cpython-82b24827f64198e0950beb6ba4434d6b2dda5318.tar.gz
cpython-82b24827f64198e0950beb6ba4434d6b2dda5318.tar.bz2
Minor grammatical fix.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/compiler.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/compiler.tex b/Doc/lib/compiler.tex
index 0c7c06d..d75dad7e 100644
--- a/Doc/lib/compiler.tex
+++ b/Doc/lib/compiler.tex
@@ -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): ...}