diff options
| author | Simon Charette <charette.s@gmail.com> | 2013-11-05 19:38:46 -0500 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2013-11-05 19:38:46 -0500 |
| commit | 87908b4fc2faa7696833448594f493257c7596d2 (patch) | |
| tree | 2523a23c433ad7d9bcb6c956847252263e08bbe6 /docs | |
| parent | b914991b3705cb6c91013d962c55cda9deb18d83 (diff) | |
Fixed a documentation typo introduced by b914991b37.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 3 |
1 files changed, 2 insertions, 1 deletions
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 %} |
