merged branch nomack84/fixed_typo (PR #891)

This PR was merged into the master branch.

Commits
-------

cc65c88 [template_from_string]Fixed typo

Discussion
----------

[template_from_string]Fixed typo in docs

Fix a typo in the template_from_string function docs
This commit is contained in:
Fabien Potencier
2012-11-07 21:11:21 +01:00
+2 -2
View 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::