diff options
author | Georg Brandl <georg@python.org> | 2010-10-26 19:31:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-26 19:31:06 (GMT) |
commit | 70cd7bc7489765483734eef795fdb49d09cc313f (patch) | |
tree | 88316b165c803389ccad6d910170eee617d1de42 /Doc | |
parent | 6a65c5df869f2526711ff00c07ca28e2dc394372 (diff) | |
download | cpython-70cd7bc7489765483734eef795fdb49d09cc313f.zip cpython-70cd7bc7489765483734eef795fdb49d09cc313f.tar.gz cpython-70cd7bc7489765483734eef795fdb49d09cc313f.tar.bz2 |
#10200: typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index b905d3a..69cc25b 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -114,7 +114,7 @@ implementation as the built-in :meth:`format` method. Loop over the format_string and return an iterable of tuples (*literal_text*, *field_name*, *format_spec*, *conversion*). This is used - by :meth:`vformat` to break the string in to either literal text, or + by :meth:`vformat` to break the string into either literal text, or replacement fields. The values in the tuple conceptually represent a span of literal text |