diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 02:37:04 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 02:37:04 (GMT) |
commit | 3d36f0f712e8a720e66808e2b634aace11c6bb88 (patch) | |
tree | 175aa2be1d043d8c8a3f4ef0499bef56adaf356e /Python/ast.c | |
parent | 8f1dd224e002f93b67821a7a55db35152928d6da (diff) | |
download | cpython-3d36f0f712e8a720e66808e2b634aace11c6bb88.zip cpython-3d36f0f712e8a720e66808e2b634aace11c6bb88.tar.gz cpython-3d36f0f712e8a720e66808e2b634aace11c6bb88.tar.bz2 |
Spelling and grammar fixes in code comments and documentation
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index e5d7ac6..2b7aed8 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -2179,7 +2179,7 @@ ast_for_expr_stmt(struct compiling *c, const node *n) testlist: test (',' test)* [','] augassign: '+=' | '-=' | '*=' | '/=' | '%=' | '&=' | '|=' | '^=' | '<<=' | '>>=' | '**=' | '//=' - test: ... here starts the operator precendence dance + test: ... here starts the operator precedence dance */ if (NCH(n) == 1) { |