From: Nicolas Williams Date: Thu, 13 Mar 2014 05:49:56 +0000 (-0500) Subject: Fix for #303 in the sources X-Git-Tag: jq-1.4~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aee5c3ecb00fec686a84f6670ee8f78ce48a15ea;p=jq Fix for #303 in the sources --- diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index 8074c1e..c8fcb5f 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -640,7 +640,7 @@ sections: otherwise. It's useful for filtering lists: `[1,2,3] | map(select(. >= 2))` - will give you `[3]`. + will give you `[2,3]`. examples: - program: 'map(select(. >= 2))'