From 0275e0452a773976827c2b9bd1e598ee08e2d7f5 Mon Sep 17 00:00:00 2001 From: "Eric V. Smith" Date: Thu, 16 Jul 2020 12:10:23 -0400 Subject: [PATCH] Fix trivial typo in the PEG string parser (GH-21508) --- Parser/string_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser/string_parser.c b/Parser/string_parser.c index 627879e8179..2c35da590de 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] = '(';