1
0
mirror of https://github.com/django/django.git synced 2025-04-19 23:04:36 +00:00

[1.6.x] Fixed typo in docs/howto/custom-template-tags.txt.

Backport of 7614efa2f9e169749ab109aab909fbc244fd76a9 from master
This commit is contained in:
Ian Lee 2015-03-12 23:38:27 -07:00 committed by Tim Graham
parent 412137a1e8
commit fc2ec51941

View File

@ -579,7 +579,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 %}