From 197a2cd4871769919dd69434439c3e7f4356728c 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] [1.11.x] Made a sentence in default_if_none docs consistent with other template filters. Backport of a7214f0e84913a27e0b73de89d4c827ef1c53b94 from master --- 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 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