summaryrefslogtreecommitdiff
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:39:39 -0500
commita7214f0e84913a27e0b73de89d4c827ef1c53b94 (patch)
tree29e1b9baacd204d05ab430168036e2eb5976b494
parent3d14cbc86781ea1051af7f0c421bee3ecf2f9842 (diff)
Made a sentence in default_if_none docs consistent with other template filters.
-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 5b453a0cba..c65ddc5542 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -1499,7 +1499,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