[Python-checkins] r73331 - python/trunk/Grammar/Grammar

benjamin.peterson python-checkins at python.org
Wed Jun 10 15:45:32 CEST 2009


Author: benjamin.peterson
Date: Wed Jun 10 15:45:31 2009
New Revision: 73331

Log:
fix spelling

Modified:
   python/trunk/Grammar/Grammar

Modified: python/trunk/Grammar/Grammar
==============================================================================
--- python/trunk/Grammar/Grammar	(original)
+++ python/trunk/Grammar/Grammar	Wed Jun 10 15:45:31 2009
@@ -134,7 +134,7 @@
                          |'*' test (',' argument)* [',' '**' test] 
                          |'**' test)
 # The reason that keywords are test nodes instead of NAME is that using NAME
-# results in an amiguity. ast.c makes sure it's a NAME.
+# results in an ambiguity. ast.c makes sure it's a NAME.
 argument: test [gen_for] | test '=' test
 
 list_iter: list_for | list_if


More information about the Python-checkins mailing list