From: Fabien Potencier Date: Thu, 14 Apr 2011 08:03:43 +0000 (+0200) Subject: fixed typos in the doc X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=58206d816b8bb2632f0c678409fdaf134c571abc;p=konrad%2Ftwig.git fixed typos in the doc --- diff --git a/doc/templates.rst b/doc/templates.rst index e9f835a..b2afc97 100644 --- a/doc/templates.rst +++ b/doc/templates.rst @@ -177,7 +177,7 @@ leading and or trailing whitespace from any tag type: {{- value -}} {%- endif -%} - {# output 'spaces' #} + {# output 'no spaces' #} The above sample shows the default whitespace control modifier, and how you can use it to remove whitespace around tags. Trimming space will consume all whitespace @@ -189,7 +189,7 @@ of a tag: {% set value = 'no spaces' %}
  • {{- value }}
  • - {# outputs '
  • value
  • ' #} + {# outputs '
  • no spaces
  • ' #} Escaping --------