From bdbfa7e32c31e57552aca4780ee4783d8a7d5ef5 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Thu, 7 Nov 2013 16:39:44 +0100 Subject: [PATCH] count should be length Example refers to a count function, which does not exist. Replacing it with length works. --- docs/content/3.manual/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index 193c378..7f0a353 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -946,7 +946,7 @@ sections: means that you'll sometimes have to be more explicit about the condition you want: you can't test whether, e.g. a string is empty using `if .name then A else B end`, you'll - need something more like `if (.name | count) > 0 then A else + need something more like `if (.name | length) > 0 then A else B end` instead. If the condition A produces multiple results, it is -- 2.40.0