From e7c46cdbe872b499c93d2045394cf2d8bfbca7c5 Mon Sep 17 00:00:00 2001 From: "Eric V. Smith" Date: Tue, 22 Sep 2015 11:27:43 -0400 Subject: [PATCH] More on issue 25206: typo. --- pep-0498.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0498.txt b/pep-0498.txt index b2c53d9c7..0e97a5f78 100644 --- a/pep-0498.txt +++ b/pep-0498.txt @@ -294,7 +294,7 @@ mechanism that ``str.format()`` uses to convert values to strings. For example, this code:: - f'abc{expr1:spec1}{expr2!r:spec2}def{expr3:!s}ghi' + f'abc{expr1:spec1}{expr2!r:spec2}def{expr3!s}ghi' Might be be evaluated as::