fix typo 'in' operator
authorRalph KEMPS <thewholelifetolearn@gmail.com>
Wed, 6 Nov 2013 09:39:15 +0000 (10:39 +0100)
committerRalph KEMPS <thewholelifetolearn@gmail.com>
Wed, 6 Nov 2013 09:39:15 +0000 (10:39 +0100)
Fixed a small typo in the negative 'in' test operator

doc/templates.rst

index 2905023..a6a56d0 100644 (file)
@@ -745,7 +745,7 @@ Tests can be negated by using the ``is not`` operator:
 
 .. code-block:: jinja
 
-    {% if post.status is constant('Post::PUBLISHED') %}
+    {% if post.status is not constant('Post::PUBLISHED') %}
 
     {# is equivalent to #}
     {% if not (post.status is constant('Post::PUBLISHED')) %}