From: Eric V. Smith Date: Thu, 16 Jul 2020 16:10:23 +0000 (-0400) Subject: Fix trivial typo in the PEG string parser (GH-21508) X-Git-Tag: v3.10.0a1~383 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0275e0452a773976827c2b9bd1e598ee08e2d7f5;p=thirdparty%2FPython%2Fcpython.git Fix trivial typo in the PEG string parser (GH-21508) --- diff --git a/Parser/string_parser.c b/Parser/string_parser.c index 627879e8179e..2c35da590def 100644 --- a/Parser/string_parser.c +++ b/Parser/string_parser.c @@ -385,7 +385,7 @@ fstring_compile_expr(Parser *p, const char *expr_start, const char *expr_end, return NULL; } - // The parentheses are needed in order to allow for leading whitespace withing + // The parentheses are needed in order to allow for leading whitespace within // the f-string expression. This consequently gets parsed as a group (see the // group rule in python.gram). str[0] = '(';