From 336c7b118381f026598923ebbf147bf99d712997 Mon Sep 17 00:00:00 2001 From: fivestar Date: Fri, 25 Jun 2010 18:08:58 +0900 Subject: [PATCH] [doc] fixed typo in doc --- doc/02-Twig-for-Template-Designers.markdown | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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' %} -- 1.7.2.5