Minor grammatical fix.

This commit is contained in:
Brett Cannon 2003-10-30 05:42:15 +00:00
parent c40b7afee2
commit 82b24827f6
1 changed files with 1 additions and 1 deletions

View 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, phases. One set of errors is detected by the interpreter's parser,
the other set by the compiler. The compiler package relies on the 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 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 incomplete. For example, the compiler package does not raise an error
if a name appears more than once in an argument list: if a name appears more than once in an argument list:
\code{def f(x, x): ...} \code{def f(x, x): ...}