From: Jérôme Tamarelle Date: Sat, 7 Dec 2013 19:09:53 +0000 (+0100) Subject: Fix doc example: space missing between concatenated strings X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=d6e03576f6b6b71a95d87c9f3534cb8d21741eb3;p=web%2Fkonrad%2Ftwig.git Fix doc example: space missing between concatenated strings --- diff --git a/doc/templates.rst b/doc/templates.rst index c0ea267..47b843b 100644 --- a/doc/templates.rst +++ b/doc/templates.rst @@ -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 #}