Skip to content

Commit

Permalink
Fix typo in a comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhendriks committed Feb 23, 2024
1 parent 9c85d91 commit f4e8f79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private void computeCombinedLattice(List<LatticeNode<Variant<T>>> lattice,
// themselves, as that would result in the node itself, given the idempotent property of the combine
// function, which also reduces the number of required computations. To exploit these properties, we combine
// the current node only with nodes with a higher index.
// - If two nodes are already related (one is an ancestor or descendent of the other), the combined variant
// - If two nodes are already related (one is an ancestor or descendant of the other), the combined variant
// will be equal to one of the two nodes being combined, which are already in the lattice and are already
// related to each other. We can thus forgo combining such nodes, further improving performance.
Set<LatticeNode<Variant<T>>> others = inputNodes.stream()
Expand Down

0 comments on commit f4e8f79

Please sign in to comment.