From 4c4b336ecb992c10606f9899535c5c39708bd347 Mon Sep 17 00:00:00 2001 From: ad hoc Date: Thu, 31 Mar 2022 14:15:02 +0200 Subject: [PATCH] rename min word len for typo error --- milli/src/error.rs | 4 ++-- milli/src/update/settings.rs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/milli/src/error.rs b/milli/src/error.rs index 611160319..688977741 100644 --- a/milli/src/error.rs +++ b/milli/src/error.rs @@ -72,7 +72,7 @@ pub enum UserError { SerdeJson(serde_json::Error), SortError(SortError), UnknownInternalDocumentId { document_id: DocumentId }, - InvalidMinTypoWordSetting(u8, u8), + InvalidMinTypoWordLenSetting(u8, u8), } impl From for Error { @@ -292,7 +292,7 @@ ranking rules settings to use the sort parameter at search time.", Self::UnknownInternalDocumentId { document_id } => { write!(f, "An unknown internal document id have been used: `{}`.", document_id) } - Self::InvalidMinTypoWordSetting(one, two) => write!(f, "`minWordSizeForTypos` setting is invalid. `oneTypo` and `twoTypos` fields should be between `0` and `255`, and `twoTypos` should be greater or equals to `oneTypo` but found `oneTypo: {}` and twoTypos: {}`.", one, two), + Self::InvalidMinTypoWordLenSetting(one, two) => write!(f, "`minWordSizeForTypos` setting is invalid. `oneTypo` and `twoTypos` fields should be between `0` and `255`, and `twoTypos` should be greater or equals to `oneTypo` but found `oneTypo: {}` and twoTypos: {}`.", one, two), } } } diff --git a/milli/src/update/settings.rs b/milli/src/update/settings.rs index 8fd9b9a9a..26ed5730a 100644 --- a/milli/src/update/settings.rs +++ b/milli/src/update/settings.rs @@ -498,7 +498,7 @@ impl<'a, 't, 'u, 'i> Settings<'a, 't, 'u, 'i> { match (&self.min_1_typo_word_len, &self.min_2_typos_word_len) { (Setting::Set(one), Setting::Set(two)) => { if one > two { - return Err(UserError::InvalidMinTypoWordSetting(*one, *two).into()); + return Err(UserError::InvalidMinTypoWordLenSetting(*one, *two).into()); } else { self.index.put_min_word_len_1_typo(&mut self.wtxn, *one)?; self.index.put_min_word_len_2_typos(&mut self.wtxn, *two)?; @@ -507,7 +507,7 @@ impl<'a, 't, 'u, 'i> Settings<'a, 't, 'u, 'i> { (Setting::Set(one), _) => { let two = self.index.min_word_len_2_typos(&self.wtxn)?; if *one > two { - return Err(UserError::InvalidMinTypoWordSetting(*one, two).into()); + return Err(UserError::InvalidMinTypoWordLenSetting(*one, two).into()); } else { self.index.put_min_word_len_1_typo(&mut self.wtxn, *one)?; } @@ -515,7 +515,7 @@ impl<'a, 't, 'u, 'i> Settings<'a, 't, 'u, 'i> { (_, Setting::Set(two)) => { let one = self.index.min_word_len_1_typo(&self.wtxn)?; if one > *two { - return Err(UserError::InvalidMinTypoWordSetting(one, *two).into()); + return Err(UserError::InvalidMinTypoWordLenSetting(one, *two).into()); } else { self.index.put_min_word_len_2_typos(&mut self.wtxn, *two)?; }