Fix doc example: space missing between concatenated strings

This commit is contained in:
Jérôme Tamarelle
2013-12-07 20:09:53 +01:00
parent d5984bbb05
commit d6e03576f6
+1 -1
View File
@@ -558,7 +558,7 @@ even if you're not working with PHP you should feel comfortable with it.
.. code-block:: jinja
{% set greeting = 'Hello' %}
{% set greeting = 'Hello ' %}
{% set name = 'Fabien' %}
{{ greeting ~ name|lower }} {# Hello fabien #}