Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
egli committed Dec 11, 2024
1 parent 973fed5 commit 8f42eae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/translator/trie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@ impl Trie {
));
} else if let Some(node) = node.any_transition() {
matching_rules.extend(self.find_translations_from_node(
&input[bytes..],
Some(c),
node,
match_length + 1,
offset,
&input[bytes..],
Some(c),
node,
match_length + 1,
offset,
));
}
}
Expand Down

0 comments on commit 8f42eae

Please sign in to comment.