summaryrefslogtreecommitdiff
path: root/Grammar
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-07-15 16:13:05 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-07-15 16:13:05 +0300
commit1e6755ba43f873f9a67ffb254b06aec17a9c237e (patch)
treefe0428ceaba7d1699e983183c5158cc0558184d3 /Grammar
parent6cf0e13b656b624f456f9ca1deb924dc00191bc7 (diff)
parent5d9c7ed55aa824782a6dcd4db355ef2d3d03fb8a (diff)
downloadcpython-git-1e6755ba43f873f9a67ffb254b06aec17a9c237e.tar.gz
Issue #27518: Merge from 3.5
Diffstat (limited to 'Grammar')
-rw-r--r--Grammar/Grammar2
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar
index 14bdecd0e2..9e4979e3a1 100644
--- a/Grammar/Grammar
+++ b/Grammar/Grammar
@@ -137,7 +137,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 |