summaryrefslogtreecommitdiffstats
path: root/Doc/library/string.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-11 06:53:10 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-11 06:53:10 (GMT)
commit57dfb227a3b0b00da584734510f9c831a94d08b5 (patch)
tree7d34191acae1dec021ef0028c53ee56c4cac9b01 /Doc/library/string.rst
parent5c4e32b131af335d82e467ba95d6b30a414020e8 (diff)
downloadcpython-57dfb227a3b0b00da584734510f9c831a94d08b5.zip
cpython-57dfb227a3b0b00da584734510f9c831a94d08b5.tar.gz
cpython-57dfb227a3b0b00da584734510f9c831a94d08b5.tar.bz2
#16154: fix some doctests in Doc/library. Patch by Ravi Sinha.
Diffstat (limited to 'Doc/library/string.rst')
-rw-r--r--Doc/library/string.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index 9c7509b..a55c6b0 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -717,7 +717,7 @@ Here is an example of how to use a Template:
>>> Template('Give $who $100').substitute(d)
Traceback (most recent call last):
[...]
- ValueError: Invalid placeholder in string: line 1, col 10
+ ValueError: Invalid placeholder in string: line 1, col 11
>>> Template('$who likes $what').substitute(d)
Traceback (most recent call last):
[...]