summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hammel <jhammel@mozilla.com>2010-12-21 17:08:10 -0800
committerJeff Hammel <jhammel@mozilla.com>2010-12-21 17:08:10 -0800
commit59d8608ee370ec5f250d7f63168a3b0e3d8d9b0f (patch)
tree69f69351530ba9bcacc9c182a4c4aca684362ee8
parent22f95e0bd900ab0dace1cf01606095f925a7d252 (diff)
downloadtempita-59d8608ee370ec5f250d7f63168a3b0e3d8d9b0f.tar.gz
forgot an ending quote on the ending delimeter
-rw-r--r--docs/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.txt b/docs/index.txt
index fcf97e0..738f77a 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -152,7 +152,7 @@ the built-in variables like ``{{start_braces}}`` and
You may also specify the delimeters as an argument to the Template
__init__ method:
- >>> Template(content='Hello ${name}', delimeters=('${', '}))
+ >>> Template(content='Hello ${name}', delimeters=('${', '}'))
The delimeters argument must be of length two and both items must be strings.