Skip to content

Commit d65ad45

Browse files
Gustrynyalldawson
authored andcommittedAug 25, 2018
fix array formatting for array_filter
1 parent 38d1c68 commit d65ad45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎resources/function_help/json/array_filter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
{"arg":"expression","description":"an expression to evaluate on each item. The variable `@element` will be replaced by the current value."}
88
],
99
"examples": [
10-
{ "expression": "array_filter(array(1,2,3),@element < 3)", "returns":"array: 1, 2"}
10+
{ "expression": "array_filter(array(1,2,3),@element < 3)", "returns":"[ 1, 2 ]"}
1111
]
1212
}

1 commit comments

Comments
 (1)

m-kuhn commented on Aug 26, 2018

@m-kuhn
Member

Thanks :)

Please sign in to comment.