projects
/
web/konrad/twig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d5984bb
)
Fix doc example: space missing between concatenated strings
author
Jérôme Tamarelle
<jerome@tamarelle.net>
Sat, 7 Dec 2013 19:09:53 +0000 (20:09 +0100)
committer
Jérôme Tamarelle
<jerome@tamarelle.net>
Sat, 7 Dec 2013 19:09:53 +0000 (20:09 +0100)
doc/templates.rst
patch
|
blob
|
history
diff --git
a/doc/templates.rst
b/doc/templates.rst
index
c0ea267
..
47b843b
100644
(file)
--- 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 #}