]> granicus.if.org Git - python/commitdiff
Issue #27518: Fix typo in Grammar/Grammar
authorBerker Peksag <berker.peksag@gmail.com>
Fri, 15 Jul 2016 13:12:39 +0000 (16:12 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Fri, 15 Jul 2016 13:12:39 +0000 (16:12 +0300)
Patch by Stéphane Wirtel.

Grammar/Grammar

index 99fcea026a377df713b68c9ebbe2567a94c3504e..43075234270cf31bdca8b1821aa4c14bbcef0c1a 100644 (file)
@@ -132,7 +132,7 @@ arglist: argument (',' argument)*  [',']
 # to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
 # we explicitly match '*' here, too, to give it proper precedence.
 # Illegal combinations and orderings are blocked in ast.c:
-# multiple (test comp_for) arguements are blocked; keyword unpackings
+# multiple (test comp_for) arguments are blocked; keyword unpackings
 # that precede iterable unpackings are blocked; etc.
 argument: ( test [comp_for] |
             test '=' test |