From 14293f6c8ff0d2c3515b548be77587bcfa18d45c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Tue, 25 Apr 2023 16:55:39 +0200 Subject: [PATCH] Make rustfmt happy --- milli/src/search/criteria/exactness.rs | 8 ++------ milli/src/search/query_tree.rs | 8 +++----- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/milli/src/search/criteria/exactness.rs b/milli/src/search/criteria/exactness.rs index 6ca5735b7..879bdcdb3 100644 --- a/milli/src/search/criteria/exactness.rs +++ b/milli/src/search/criteria/exactness.rs @@ -658,9 +658,7 @@ mod tests { let dividers = [2, 3, 5, 7, 11, 6, 15, 35, 18, 14]; let parts_candidates: Vec = dividers .iter() - .map(|÷r| { - (0..).map(|x| divider * x).take_while(|x| *x <= 210).collect() - }) + .map(|÷r| (0..).map(|x| divider * x).take_while(|x| *x <= 210).collect()) .collect(); let combinations = create_disjoint_combinations(parts_candidates); @@ -688,9 +686,7 @@ mod tests { ]; let parts_candidates: Vec = dividers .iter() - .map(|divider| { - (0..).map(|x| divider * x).take_while(|x| *x <= 100).collect() - }) + .map(|divider| (0..).map(|x| divider * x).take_while(|x| *x <= 100).collect()) .collect(); let combinations = create_non_disjoint_combinations(parts_candidates.clone()); diff --git a/milli/src/search/query_tree.rs b/milli/src/search/query_tree.rs index 15b18b565..b2418c9c5 100755 --- a/milli/src/search/query_tree.rs +++ b/milli/src/search/query_tree.rs @@ -628,8 +628,7 @@ fn create_matching_words( } // create a CONSECUTIVE matchings words wrapping all word in the phrase PrimitiveQueryPart::Phrase(words) => { - let ids: Vec<_> = - (0..words.len()).map(|i| id + i as PrimitiveWordId).collect(); + let ids: Vec<_> = (0..words.len()).map(|i| id + i as PrimitiveWordId).collect(); // Require that all words of the phrase have a corresponding MatchingWord // before adding any of them to the matching_words result if let Some(phrase_matching_words) = words @@ -686,9 +685,8 @@ fn create_matching_words( } }) .collect(); - let ids: Vec<_> = (0..words.len()) - .map(|i| id + i as PrimitiveWordId) - .collect(); + let ids: Vec<_> = + (0..words.len()).map(|i| id + i as PrimitiveWordId).collect(); if let Some(synonyms) = ctx.synonyms(&words)? { for synonym in synonyms {