]> granicus.if.org Git - jq/commitdiff
count should be length 210/head
authorPeter van Dijk <peter@7bits.nl>
Thu, 7 Nov 2013 15:39:44 +0000 (16:39 +0100)
committerPeter van Dijk <peter@7bits.nl>
Thu, 7 Nov 2013 15:39:44 +0000 (16:39 +0100)
Example refers to a count function, which does not exist. Replacing it with length works.

docs/content/3.manual/manual.yml

index 193c37816d4a0bcd499a9506c23062dad662c725..7f0a353ab8aa8b7e5504cfe39d9ca05b81717808 100644 (file)
@@ -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