From a7214f0e84913a27e0b73de89d4c827ef1c53b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joon=20Hwan=20=EA=B9=80=EC=A4=80=ED=99=98?= Date: Wed, 15 Feb 2017 22:39:39 +0900 Subject: [PATCH] Made a sentence in default_if_none docs consistent with other template filters. --- docs/ref/templates/builtins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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