1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Fix for #303 in the sources

This commit is contained in:
Nicolas Williams
2014-03-13 00:49:56 -05:00
parent da0d575649
commit aee5c3ecb0

View File

@@ -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))'