PEP 498: Capitalize the F at the start of the sentence (GH-301)

This commit is contained in:
Mariatta 2017-07-06 10:17:04 -07:00 committed by GitHub
parent 202e69a1e0
commit dba43db7b9
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ With an f-string, this becomes::
>>> f'The value is {value}.'
'The value is 80.'
f-strings provide a concise, readable way to include the value of
F-strings provide a concise, readable way to include the value of
Python expressions inside strings.
In this sense, ``string.Template`` and %-formatting have similar