From 200444922bd9c1f5ca70ccf7559320eeeae184ce Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Thu, 30 Jun 2011 14:40:05 -0700 Subject: [PATCH] fix typo --- docs/templates.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/templates.rst b/docs/templates.rst index a4a7d30..b563277 100644 --- a/docs/templates.rst +++ b/docs/templates.rst @@ -44,7 +44,7 @@ the details later in that document:: This covers the default settings. The application developer might have changed the syntax from ``{% foo %}`` to ``<% foo %>`` or something similar. -There are two kinds of delimiers. ``{% ... %}`` and ``{{ ... }}``. The first +There are two kinds of delimiters. ``{% ... %}`` and ``{{ ... }}``. The first one is used to execute statements such as for-loops or assign values, the latter prints the result of the expression to the template. @@ -165,7 +165,7 @@ that block:: {% for item in seq -%} {{ item }} {%- endfor %} - + This will yield all elements without whitespace between them. If `seq` was a list of numbers from ``1`` to ``9`` the output would be ``123456789``. @@ -1174,7 +1174,7 @@ The following functions are available in the global scope by default: .. attribute:: current Returns the current item. - + **new in Jinja 2.1** .. class:: joiner(sep=', ') -- 2.26.2