diff options
| author | Ian Lee <IanLee1521@gmail.com> | 2015-03-12 23:38:27 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-03-13 08:13:49 -0400 |
| commit | 7614efa2f9e169749ab109aab909fbc244fd76a9 (patch) | |
| tree | 7bbbd9856742566533d467cebf1617cdf8d5cd90 | |
| parent | d861f95c445652e4269c9015836d14dcf8b9a587 (diff) | |
Fixed typo in docs/howto/custom-template-tags.txt.
| -rw-r--r-- | docs/howto/custom-template-tags.txt | 2 |
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 %} |
