Skip to content

Commit

Permalink
Merge pull request #1474 from joewiz/fix/array-function-doc
Browse files Browse the repository at this point in the history
Correct param name in array:for-each-pair
  • Loading branch information
adamretter authored Jul 3, 2017
2 parents a91ac3d + 3fb01c3 commit af161fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/exist/xquery/functions/array/ArrayFunction.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ static Fn get(String name) {
"supplied arrays.",
new SequenceType[] {
new FunctionParameterSequenceType("array1", Type.ARRAY, Cardinality.EXACTLY_ONE, "The first array to process"),
new FunctionParameterSequenceType("array1", Type.ARRAY, Cardinality.EXACTLY_ONE, "The second array to process"),
new FunctionParameterSequenceType("array2", Type.ARRAY, Cardinality.EXACTLY_ONE, "The second array to process"),
new FunctionParameterSequenceType("function", Type.FUNCTION_REFERENCE, Cardinality.EXACTLY_ONE, "The function to call for each pair")
},
new FunctionReturnSequenceType(Type.ARRAY, Cardinality.EXACTLY_ONE, "The resulting array")
Expand Down

0 comments on commit af161fd

Please sign in to comment.