diff options
| author | Simon Charette <charette.s@gmail.com> | 2013-04-04 23:40:29 -0700 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2013-04-04 23:40:29 -0700 |
| commit | d7fa80258b0dc918483679066b38fc4d471acabc (patch) | |
| tree | 4eb46f3bc875e77828c24248266018e049cf18dd | |
| parent | 1aca9d93beaac9f5e37cd90d1e29e572b5f7a86d (diff) | |
| parent | 17be12df473c24f5b717dd553400971893a9676c (diff) | |
Merge pull request #993 from almostabc/template-include-docs-update
Removed a trailing space in the template builtins docs.
| -rw-r--r-- | docs/ref/templates/builtins.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 955d2ab67b..123e114c4a 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -171,7 +171,7 @@ just declare the cycle, but not output the first value, you can add a {% for obj in some_list %} {% cycle 'row1' 'row2' as rowcolors silent %} - <tr class="{{ rowcolors }}">{% include "subtemplate.html " %}</tr> + <tr class="{{ rowcolors }}">{% include "subtemplate.html" %}</tr> {% endfor %} This will output a list of ``<tr>`` elements with ``class`` |
