More on issue 25206: typo.

This commit is contained in:
Eric V. Smith 2015-09-22 11:27:43 -04:00
parent 489ca44aa3
commit e7c46cdbe8
1 changed files with 1 additions and 1 deletions

View File

@ -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::