From 3e67d8818cc84127881883f0dca17e95e365b511 Mon Sep 17 00:00:00 2001 From: ad hoc Date: Mon, 4 Apr 2022 20:34:23 +0200 Subject: [PATCH] fix typo in test comment --- milli/tests/search/typo_tolerance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/tests/search/typo_tolerance.rs b/milli/tests/search/typo_tolerance.rs index 7d19e4ab0..df15fb768 100644 --- a/milli/tests/search/typo_tolerance.rs +++ b/milli/tests/search/typo_tolerance.rs @@ -156,7 +156,7 @@ fn test_typo_disabled_on_word() { let config = IndexerConfig::default(); let mut builder = Settings::new(&mut txn, &index, &config); let mut exact_words = BTreeSet::new(); - // sealand doesn't allow typos anymore + // `zealand` doesn't allow typos anymore exact_words.insert("zealand".to_string()); builder.set_exact_words(exact_words); builder.execute(|_| ()).unwrap();