summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2015-03-12 23:38:27 -0700
committerTim Graham <timograham@gmail.com>2015-03-13 08:13:49 -0400
commit7614efa2f9e169749ab109aab909fbc244fd76a9 (patch)
tree7bbbd9856742566533d467cebf1617cdf8d5cd90 /docs
parentd861f95c445652e4269c9015836d14dcf8b9a587 (diff)
Fixed typo in docs/howto/custom-template-tags.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-template-tags.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt
index a340ac7b83..c142201e1f 100644
--- a/docs/howto/custom-template-tags.txt
+++ b/docs/howto/custom-template-tags.txt
@@ -847,7 +847,7 @@ it's rendered:
.. code-block:: html+django
{% for o in some_list %}
- <tr class="{% cycle 'row1' 'row2' %}>
+ <tr class="{% cycle 'row1' 'row2' %}">
...
</tr>
{% endfor %}