rename min_word_len_2_typo

This commit is contained in:
ad hoc
2022-03-31 13:51:27 +02:00
parent 55af85db3c
commit 286dd7b2e4
3 changed files with 10 additions and 10 deletions

View File

@ -183,7 +183,7 @@ impl<'a> Context for QueryTreeBuilder<'a> {
fn min_word_len_for_typo(&self) -> heed::Result<(u8, u8)> {
let one = self.index.min_word_len_1_typo(&self.rtxn)?;
let two = self.index.min_word_len_2_typo(&self.rtxn)?;
let two = self.index.min_word_len_2_typos(&self.rtxn)?;
Ok((one, two))
}
}