Skip to content

Commit f36c2e8

Browse files
authored
Update CanonLT.md
1 parent 71cc772 commit f36c2e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/CanonLT.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
// A type alias for values that can either be a URI or a Node.
1818
type NodeOrRef = URI | Node;
1919

20-
// A type alias for node entries which may be a single NodeOrRef or an array of them.
20+
// A type alias for node entries which may be a single NodeOrRef or an unordered set of them.
2121
type NodeEntry = NodeOrRef | NodeOrRef[];
2222

2323
interface LinkedTree {
24-
// The root can be a single NodeOrRef or an array of NodeOrRef.
24+
// The root can be a single NodeOrRef or an unordered set of NodeOrRef.
2525
root: NodeOrRef | NodeOrRef[];
2626

27-
// A mapping of identifiers to their corresponding Node objects.
28-
nodes: Map<URI, CNLTNode | Node[]>;
27+
// A mapping of identifiers to their corresponding Node objects (an unordered set).
28+
nodes: Map<URI, Node | Node[]>;
2929
}
3030

3131
interface Node {

0 commit comments

Comments
 (0)