Add missing closing apostrophe
This commit is contained in:
parent
aa3379f2fb
commit
c42a1b6053
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue