Add missing closing apostrophe

This commit is contained in:
Andrew M. Kuchling 2004-08-11 15:05:26 +00:00
parent aa3379f2fb
commit c42a1b6053
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ A Simpler Proposal
>>> from string import template
>>> mapping = dict(name='Guido', country='the Netherlands')
>>> s = template('${name} was born in ${country})
>>> s = template('${name} was born in ${country}')
>>> print s % mapping
Guido was born in the Netherlands