[Python-checkins] cpython (3.5): Issue #27518: Fix typo in Grammar/Grammar

berker.peksag python-checkins at python.org
Fri Jul 15 09:12:36 EDT 2016


https://hg.python.org/cpython/rev/db5a5679a9de
changeset:   102354:db5a5679a9de
branch:      3.5
parent:      102350:e6e7c8368c70
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Jul 15 16:12:39 2016 +0300
summary:
  Issue #27518: Fix typo in Grammar/Grammar

Patch by Stéphane Wirtel.

files:
  Grammar/Grammar |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Grammar/Grammar b/Grammar/Grammar
--- a/Grammar/Grammar
+++ b/Grammar/Grammar
@@ -132,7 +132,7 @@
 # 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 |

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list