From 87908b4fc2faa7696833448594f493257c7596d2 Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Tue, 5 Nov 2013 19:38:46 -0500 Subject: [PATCH] Fixed a documentation typo introduced by b914991b37. --- docs/ref/templates/builtins.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index d8f76dc680..2a73d56fb3 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -1434,7 +1434,8 @@ then the output would be: ] You can also do more complicated things like:: - {{ for book in books|dictsort:"author.age" + + {% for book in books|dictsort:"author.age" %} * {{ book.title }} ({{ book.author.name }}) {% endfor %}