From cf864a1c2ee5bba6e344a0d7aa11f1bbdb75f1ad Mon Sep 17 00:00:00 2001 From: yudrywet Date: Sun, 14 Apr 2024 20:11:34 +0800 Subject: [PATCH] chore: fix some typos in comments Signed-off-by: yudrywet --- milli/src/search/new/matches/mod.rs | 4 ++-- milli/src/search/new/query_term/parse_query.rs | 2 +- milli/src/update/facet/incremental.rs | 2 +- .../index_documents/extract/extract_fid_docid_facet_values.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/milli/src/search/new/matches/mod.rs b/milli/src/search/new/matches/mod.rs index 2913f206d..8f0069589 100644 --- a/milli/src/search/new/matches/mod.rs +++ b/milli/src/search/new/matches/mod.rs @@ -134,7 +134,7 @@ impl<'t> Matcher<'t, '_> { for (token_position, word_position, word) in words_positions { partial = match partial.match_token(word) { // token matches the partial match, but the match is not full, - // we temporarly save the current token then we try to match the next one. + // we temporarily save the current token then we try to match the next one. Some(MatchType::Partial(partial)) => { potential_matches.push((token_position, word_position, partial.char_len())); partial @@ -722,7 +722,7 @@ mod tests { @"…void void void void void split the world void void" ); - // Text containing matches with diferent density. + // Text containing matches with different density. let text = "split void the void void world void void void void void void void void void void split the world void void"; let mut matcher = builder.build(text); // crop should return 10 last words with a marker at the start. diff --git a/milli/src/search/new/query_term/parse_query.rs b/milli/src/search/new/query_term/parse_query.rs index 86be7da77..93f5f081c 100644 --- a/milli/src/search/new/query_term/parse_query.rs +++ b/milli/src/search/new/query_term/parse_query.rs @@ -119,7 +119,7 @@ pub fn located_query_terms_from_tokens( if let Some(located_query_term) = phrase.build(ctx) { // as we are evaluating a negative operator we put the phrase // in the negative one *but* we don't reset the negative operator - // as we are immediatly starting a new negative phrase. + // as we are immediately starting a new negative phrase. if negative_phrase { negative_phrases.push(located_query_term); } else { diff --git a/milli/src/update/facet/incremental.rs b/milli/src/update/facet/incremental.rs index 798e0fe3d..f871eee31 100644 --- a/milli/src/update/facet/incremental.rs +++ b/milli/src/update/facet/incremental.rs @@ -499,7 +499,7 @@ impl FacetsUpdateIncrementalInner { ModificationResult::Expand | ModificationResult::Reduce { .. } ) { - // if any modification occured, insert it in the database. + // if any modification occurred, insert it in the database. self.db.put(txn, &insertion_key.as_ref(), &updated_value)?; Ok(insertion_key_modification) } else { diff --git a/milli/src/update/index_documents/extract/extract_fid_docid_facet_values.rs b/milli/src/update/index_documents/extract/extract_fid_docid_facet_values.rs index 1f8af372d..d88d96919 100644 --- a/milli/src/update/index_documents/extract/extract_fid_docid_facet_values.rs +++ b/milli/src/update/index_documents/extract/extract_fid_docid_facet_values.rs @@ -36,7 +36,7 @@ pub struct ExtractedFacetValues { /// Extracts the facet values of each faceted field of each document. /// -/// Returns the generated grenad reader containing the docid the fid and the orginal value as key +/// Returns the generated grenad reader containing the docid the fid and the original value as key /// and the normalized value as value extracted from the given chunk of documents. /// We need the fid of the geofields to correctly parse them as numbers if they were sent as strings initially. #[tracing::instrument(level = "trace", skip_all, target = "indexing::extract")]