]> granicus.if.org Git - jq/commitdiff
Fix >= example # [1,2,3] 303/head
authorRyan Braganza <ryan.braganza@gmail.com>
Fri, 21 Feb 2014 11:10:47 +0000 (03:10 -0800)
committerRyan Braganza <ryan.braganza@gmail.com>
Fri, 21 Feb 2014 11:10:47 +0000 (03:10 -0800)
'[1,2,3] | map(select(. >= 2))' returns [2,3] not [3]

manual/index.html

index 9ec0b0668955b3149be3c4948e6e0026d690c14b..4732c5928c49b63440231caaa6cb4e8a52827ce1 100644 (file)
@@ -1436,7 +1436,7 @@ map(foo) | from_entries</code>, useful for doing some operation to all keys and
                 </h3>
                 <p>The function <code>select(foo)</code> produces its input unchanged if <code>foo</code> returns true for that input, and produces no output otherwise.</p>
 
-<p>It&#8217;s useful for filtering lists: <code>[1,2,3] | map(select(. &gt;= 2))</code> will give you <code>[3]</code>.</p>
+<p>It&#8217;s useful for filtering lists: <code>[1,2,3] | map(select(. &gt;= 2))</code> will give you <code>[2,3]</code>.</p>
 
                 
                   <div>