From: Georg Brandl Date: Sun, 11 May 2008 10:56:50 +0000 (+0200) Subject: Another typo. X-Git-Tag: 2.0rc1~66^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3863b6583d68495addf693fac7a741479fff5fde;p=jinja2.git Another typo. --HG-- branch : trunk --- diff --git a/docs/switching.rst b/docs/switching.rst index 0ca2990..3de07d1 100644 --- a/docs/switching.rst +++ b/docs/switching.rst @@ -124,11 +124,11 @@ Conditions In Django you can use the following constructs to check for equality:: - {% ifequals foo "bar" %} + {% ifequal foo "bar" %} ... {% else %} ... - {% endifequals %} + {% endifequal %} In Jinja2 you can use the normal if statement in combination with operators::