mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-23 23:00:59 +00:00
Update meilisearch-core/src/update/settings_update.rs
Co-authored-by: marin <postma.marin@protonmail.com>
This commit is contained in:
@ -296,7 +296,7 @@ pub fn apply_synonyms_update(
|
||||
fn normalize<T: AsRef<[u8]>>(analyzer: &Analyzer<T>, text: &str) -> String {
|
||||
analyzer.analyze(&text)
|
||||
.tokens()
|
||||
.fold(String::new(), |mut s, t| s + t.text())
|
||||
.fold(String::new(), |s, t| s + t.text())
|
||||
}
|
||||
|
||||
let mut synonyms_builder = SetBuilder::memory();
|
||||
|
Reference in New Issue
Block a user