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

Fixed typo in docs/howto/custom-template-tags.txt.

parent d861f95c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 %}