aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Moennich <adrian@planetcoding.net>2019-10-13 16:54:00 +0200
committerAdrian Moennich <adrian@planetcoding.net>2019-10-13 16:54:35 +0200
commit4d331a0ae3fd74f0aeec892337eea55755ec1ebe (patch)
tree0209e7b6b30c98acfe7cebe8f671eb509a9c468f /docs
parentc4d39969e2c230b3d503833bb59f6d0b572216d7 (diff)
downloadjinja-4d331a0ae3fd74f0aeec892337eea55755ec1ebe.tar.gz
Don't make cond_expr_undefined configurable
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/templates.rst b/docs/templates.rst
index 13b693b7..af64a598 100644
--- a/docs/templates.rst
+++ b/docs/templates.rst
@@ -1355,8 +1355,8 @@ The general syntax is ``<do something> if <something is true> else <do
something else>``.
The `else` part is optional. If not provided, the else block implicitly
-evaluates into an undefined object (using the environment's undefined object
-specified in ``cond_expr_undefined``):
+evaluates into an :class:`Undefined` object (regardless of what ``undefined``
+in the environment is set to):
.. sourcecode:: jinja