Run cargo fmt

This commit is contained in:
Samyak S Sarnayak 2022-10-13 23:34:17 +05:30
parent d187b32a28
commit bb9ce3c5c5
No known key found for this signature in database
GPG Key ID: 365873F2F0C6153B
2 changed files with 7 additions and 7 deletions

View File

@ -426,12 +426,12 @@ pub fn resolve_phrase(ctx: &dyn Context, phrase: &[Option<String>]) -> Result<Ro
// Get all the documents with the matching distance for each word pairs.
let mut bitmaps = Vec::with_capacity(winsize.pow(2));
for (offset, s1) in win.iter().enumerate().filter_map(|(index, word)| {
if let Some(word) = word {
Some((index, word))
} else {
None
}
}) {
if let Some(word) = word {
Some((index, word))
} else {
None
}
}) {
for (dist, s2) in win.iter().skip(offset + 1).enumerate().filter_map(|(index, word)| {
if let Some(word) = word {
Some((index, word))

View File

@ -15,10 +15,10 @@ use slice_group_by::GroupBy;
mod distinct;
mod facet_distribution;
mod filters;
mod phrase_search;
mod query_criteria;
mod sort;
mod typo_tolerance;
mod phrase_search;
pub const TEST_QUERY: &'static str = "hello world america";