fix array formatting for array_filter

This commit is contained in:
Etienne Trimaille 2018-08-24 19:33:05 -04:00 committed by Nyall Dawson
parent 38d1c68cfa
commit d65ad453cf

View File

@ -7,6 +7,6 @@
{"arg":"expression","description":"an expression to evaluate on each item. The variable `@element` will be replaced by the current value."}
],
"examples": [
{ "expression": "array_filter(array(1,2,3),@element < 3)", "returns":"array: 1, 2"}
{ "expression": "array_filter(array(1,2,3),@element < 3)", "returns":"[ 1, 2 ]"}
]
}