[template_from_string]Fixed typo
authorMario A. Alvarez Garcia <nomack841024@gmail.com>
Wed, 7 Nov 2012 19:59:42 +0000 (14:59 -0500)
committerMario A. Alvarez Garcia <nomack841024@gmail.com>
Wed, 7 Nov 2012 19:59:42 +0000 (14:59 -0500)
doc/functions/template_from_string.rst

index 6936167..0b3b0b4 100644 (file)
@@ -8,8 +8,8 @@ The ``template_from_string`` function loads a template from a string:
 
 .. code-block:: jinja
 
-    {% include template_from_string("Hello {{ name }}") }}
-    {% include template_from_string(page.template) }}
+    {% include template_from_string("Hello {{ name }}") %}
+    {% include template_from_string(page.template) %}
 
 .. note::