From 421136e0d01c12bbd5d88c0cc100c293d3a5fdfb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 20 Oct 2015 11:17:21 +0530 Subject: [PATCH] Missed one place in template_lang.rst --- manual/template_lang.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manual/template_lang.rst b/manual/template_lang.rst index e542950072..10448b083a 100644 --- a/manual/template_lang.rst +++ b/manual/template_lang.rst @@ -253,7 +253,8 @@ The following functions are available in addition to those described in single-f first_matching_cmp(10,5,"small",10,"middle",15,"large","giant") - returns "large". The same example with a first value of 16 returns "giant". + + returns "large". The same example with a first value of 16 returns "giant". * ``first_non_empty(value, value, ...)`` -- returns the first value that is not empty. If all values are empty, then the empty value is returned. You can have as many values as you want.