From: fivestar Date: Fri, 25 Jun 2010 09:08:58 +0000 (+0900) Subject: [doc] fixed typo in doc X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=336c7b118381f026598923ebbf147bf99d712997;p=web%2Fkonrad%2Ftwig.git [doc] fixed typo in doc --- diff --git a/doc/02-Twig-for-Template-Designers.markdown b/doc/02-Twig-for-Template-Designers.markdown index 6a9d292..0e7106e 100644 --- a/doc/02-Twig-for-Template-Designers.markdown +++ b/doc/02-Twig-for-Template-Designers.markdown @@ -187,7 +187,6 @@ document that you might use for a simple two-column page. It's the job of [twig] - {% block head %} @@ -202,6 +201,7 @@ document that you might use for a simple two-column page. It's the job of {% endblock %} + In this example, the `{% block %}` tags define four blocks that child templates can fill in. All the `block` tag does is to tell the template engine @@ -672,7 +672,7 @@ the `set` tag and can have multiple targets: {% set foo = [1, 2] %} - {% set foo = ['foo': 'bar] %} + {% set foo = ['foo': 'bar'] %} {% set foo = 'foo' ~ 'bar' %}