summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoon Hwan 김준환 <xncbf12@gmail.com>2017-02-15 22:39:39 +0900
committerTim Graham <timograham@gmail.com>2017-02-15 08:42:24 -0500
commit197a2cd4871769919dd69434439c3e7f4356728c (patch)
tree8094740952cff44bb38d30b72d1596fa7ecd5c16 /docs
parent2b8a345996c46ecd115bb3102d3de680b50d38d2 (diff)
[1.11.x] Made a sentence in default_if_none docs consistent with other template filters.
Backport of a7214f0e84913a27e0b73de89d4c827ef1c53b94 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 6395f97607..0a2e62a79b 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -1511,7 +1511,7 @@ For example::
{{ value|default_if_none:"nothing" }}
-If ``value`` is ``None``, the output will be the string ``"nothing"``.
+If ``value`` is ``None``, the output will be ``nothing``.
.. templatefilter:: dictsort