[svn] fixed typo in docstring
authorArmin Ronacher <armin.ronacher@active-4.com>
Fri, 13 Apr 2007 20:34:35 +0000 (22:34 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Fri, 13 Apr 2007 20:34:35 +0000 (22:34 +0200)
--HG--
branch : trunk

jinja/filters.py

index e77b8912aa8b55a0ac7676590011554445bef8f3..089554c322a9dc810ade5caee98561b3c4ee9617 100644 (file)
@@ -624,7 +624,7 @@ def do_slice(slices, fill_with=None):
     those items. Useful if you want to create a div containing
     three div tags that represent columns:
 
-    .. sourcecode:: jinja
+    .. sourcecode:: html+jinja
 
         <div class="columwrapper">
           {%- for column in items|slice(3) %}
@@ -665,7 +665,7 @@ def do_batch(linecount, fill_with=None):
     given number of items. If you provide a second parameter this
     is used to fill missing items. See this example:
 
-    .. sourcecode:: jinja
+    .. sourcecode:: html+jinja
 
         <table>
         {%- for row in items|batch(3, '&nbsp;') %}