diff --git a/specifications/xpath-functions-40/src/function-catalog.xml b/specifications/xpath-functions-40/src/function-catalog.xml index 22de5ba6d..d84deb735 100644 --- a/specifications/xpath-functions-40/src/function-catalog.xml +++ b/specifications/xpath-functions-40/src/function-catalog.xml @@ -19581,8 +19581,8 @@ return fold-left($MAPS, map { }, - @@ -19602,7 +19602,7 @@ return fold-left($MAPS, map { },

The function map:of-pairs returns a map that is formed by combining key-value pair maps supplied in the - $key-value-pairs + $input argument.

The optional $combine argument can be used to define how @@ -19610,7 +19610,7 @@ return fold-left($MAPS, map { }, of the corresponding values, retaining their order in the input sequence.

The effect of the function is equivalent to the expression:

- map:build($key-value-pairs, fn($kvp) { $kvp?key }, fn($kvp) { $kvp?value }, $combine) + map:pairs($week) => map:build(fn { ?key }, fn { ?value }, $combine)