summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/Grammar.txt
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-10-10 00:28:38 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-10-10 00:28:38 (GMT)
commitfd1df3fef2ebe334e5a58e9e6e35dbd77d0a34ca (patch)
tree3a88214971caf784c7557ccc81043e7a4bf5acb8 /Lib/lib2to3/Grammar.txt
parent49f5cdde1a5804c0ac0858e3778f7bd740f4a9fc (diff)
parentd2a584b47b30f2e8189730201c4d19d51cdd0e89 (diff)
downloadcpython-fd1df3fef2ebe334e5a58e9e6e35dbd77d0a34ca.zip
cpython-fd1df3fef2ebe334e5a58e9e6e35dbd77d0a34ca.tar.gz
cpython-fd1df3fef2ebe334e5a58e9e6e35dbd77d0a34ca.tar.bz2
Issue #28394: Merge typo fixes from 3.5 into 3.6
Diffstat (limited to 'Lib/lib2to3/Grammar.txt')
-rw-r--r--Lib/lib2to3/Grammar.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/Grammar.txt b/Lib/lib2to3/Grammar.txt
index 2f02e6f..2abd5ee 100644
--- a/Lib/lib2to3/Grammar.txt
+++ b/Lib/lib2to3/Grammar.txt
@@ -153,7 +153,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 |