summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-04-30 21:39:41 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-04-30 21:40:16 +0200
commitce45240df4e2b424ff4852b1cc71d01a031457c9 (patch)
tree314bfc6d1ce9dee0c4d1117aa14ec994f8327f77
parent8f08f0afbbdf19574db40158ea8ac5a1a13e7471 (diff)
Fixed #20336 -- Removed obsolete paragraph from the docs.
Thanks Baptiste Mispelon.
-rw-r--r--docs/ref/templates/builtins.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index e0800037df..287fd4f59e 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -657,11 +657,6 @@ The arguments can be hard-coded strings, so the following is valid::
...
{% endifequal %}
-It is only possible to compare an argument to template variables or strings.
-You cannot check for equality with Python objects such as ``True`` or
-``False``. If you need to test if something is true or false, use the
-:ttag:`if` tag instead.
-
An alternative to the ``ifequal`` tag is to use the :ttag:`if` tag and the
``==`` operator.