From: Berker Peksag Date: Fri, 15 Jul 2016 13:12:39 +0000 (+0300) Subject: Issue #27518: Fix typo in Grammar/Grammar X-Git-Tag: v3.6.0a4~174^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d9c7ed55aa824782a6dcd4db355ef2d3d03fb8a;p=python Issue #27518: Fix typo in Grammar/Grammar Patch by Stéphane Wirtel. --- diff --git a/Grammar/Grammar b/Grammar/Grammar index 99fcea026a..4307523427 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -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 |