Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
imbrem committed Feb 4, 2025
1 parent c03a39a commit 15c508a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/explain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ impl<L: Language> Explain<L> {
pub(crate) fn initialize_up_to(&mut self, node: L, set: Id) -> usize {
let mut ix = self.explainfind.len();
let mut added = 0;
while ix < usize::from(set) {
while ix <= usize::from(set) {
let set_ix = ix.into();
self.uncanon_memo.insert(node.clone(), set_ix);
self.explainfind.push(ExplainNode {
Expand Down

0 comments on commit 15c508a

Please sign in to comment.