Commit fc2ec519 authored by Ian Lee's avatar Ian Lee Committed by Tim Graham
Browse files

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

Backport of 7614efa2 from master
parent 412137a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 %}