From 6742e5981bfef2c9a82a77fd5d7db29bf3c2e717 Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Thu, 10 Jul 2025 01:14:57 -0400 Subject: [PATCH] fix a typo in the comment (#2668) --- examples/basic_search.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic_search.rs b/examples/basic_search.rs index 3c9c6ca80..1c62c351d 100644 --- a/examples/basic_search.rs +++ b/examples/basic_search.rs @@ -51,7 +51,7 @@ fn main() -> tantivy::Result<()> { // Our second field is body. // We want full-text search for it, but we do not - // need to be able to be able to retrieve it + // need to be able to retrieve it // for our application. // // We can make our index lighter by omitting the `STORED` flag.