Skip to content

Commit

Permalink
Fix typo in transitive-closure (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelhkay authored Nov 23, 2023
1 parent c5bda13 commit c652572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specifications/xpath-functions-40/src/function-catalog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18974,7 +18974,7 @@ declare function fn:transitive-closure (
$node as node(),
$step as (function(node()) as node()*)
) as node()* {
tc-inclusive($node/$step(.)), $step)
tc-inclusive($node/$step(.), $step)
};]]></eg>

<note><p><emph>Explanation:</emph> The private helper function <code>tc-inclusive</code> takes a set of nodes as input,
Expand Down

0 comments on commit c652572

Please sign in to comment.