From 69332c1a64d6bdb80ff813fab403be832e12ce64 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Thu, 4 Aug 2016 13:07:31 +0000 Subject: Fix spelling and grammar in documentation and code comments --- Python/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/ast.c') diff --git a/Python/ast.c b/Python/ast.c index 7743c31c1f..6da33f73a0 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -2810,7 +2810,7 @@ ast_for_expr_stmt(struct compiling *c, const node *n) testlist_star_expr: (test|star_expr) (',' test|star_expr)* [','] augassign: '+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^=' | '<<=' | '>>=' | '**=' | '//=' - test: ... here starts the operator precendence dance + test: ... here starts the operator precedence dance */ if (NCH(n) == 1) { -- cgit v1.2.1