diff --git a/resources/function_help/json/array_foreach b/resources/function_help/json/array_foreach index aacfd7da34f..e7683c3c5ca 100644 --- a/resources/function_help/json/array_foreach +++ b/resources/function_help/json/array_foreach @@ -8,7 +8,7 @@ "description": "an array" }, { "arg": "expression", - "description": "an expression to evaluate on each item. The variable `@element` will be replaced by the current value and the variable `@counter` by the current counter (starting with 0)." + "description": "an expression to evaluate on each item. The variable `@element` will be replaced by the current value and the variable `@counter` by the current index (starting with 0)." }], "examples": [{ "expression": "array_foreach(array('a','b','c'),upper(@element))",