From d5059520aa812a7850c252bdad61f49315d9b5b5 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Wed, 3 May 2023 22:27:03 +0200 Subject: [PATCH] Fix typo --- meilisearch/src/routes/indexes/documents.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meilisearch/src/routes/indexes/documents.rs b/meilisearch/src/routes/indexes/documents.rs index 5793b6fb4..a6ee8d16e 100644 --- a/meilisearch/src/routes/indexes/documents.rs +++ b/meilisearch/src/routes/indexes/documents.rs @@ -71,7 +71,7 @@ pub fn configure(cfg: &mut web::ServiceConfig) { .route(web::put().to(SeqHandler(update_documents))) .route(web::delete().to(SeqHandler(clear_all_documents))), ) - // these routes needs to be before the /documents/{document_id} to match properly + // these routes need to be before the /documents/{document_id} to match properly .service( web::resource("/delete-batch").route(web::post().to(SeqHandler(delete_documents_batch))), )