summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndreas Damgaard Pedersen <andreas.damgaard.pedersen@gmail.com>2014-06-10 11:48:08 +0100
committerAndreas Damgaard Pedersen <andreas.damgaard.pedersen@gmail.com>2014-06-10 11:48:08 +0100
commit9560dac3c0980d0c4bc75948d4a8c977fbbd3a6d (patch)
treea2d78d48b74d43a69b04e468b108851792791a89 /docs
parentdf09d854828bcff56eb72f48ff1ba8fce7e90c90 (diff)
Close autoescape tag in template documentation.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index e66c583720..efa7188990 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -108,7 +108,7 @@ Variables included in the cycle will be escaped. You can disable auto-escaping
with::
{% for o in some_list %}
- <tr class="{% autoescape off %}{% cycle rowvalue1 rowvalue2 %}{% endautoescape
+ <tr class="{% autoescape off %}{% cycle rowvalue1 rowvalue2 %}{% endautoescape %}
...
</tr>
{% endfor %}