From 19da45c53bbecef0f4da0d4b62bc41f6a723b083 Mon Sep 17 00:00:00 2001 From: ad hoc Date: Mon, 7 Mar 2022 15:02:07 +0100 Subject: [PATCH] Update meilisearch-http/src/extractors/sequential_extractor.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clément Renault --- meilisearch-http/src/extractors/sequential_extractor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meilisearch-http/src/extractors/sequential_extractor.rs b/meilisearch-http/src/extractors/sequential_extractor.rs index 1176334ad..d6cee6083 100644 --- a/meilisearch-http/src/extractors/sequential_extractor.rs +++ b/meilisearch-http/src/extractors/sequential_extractor.rs @@ -6,7 +6,7 @@ use pin_project_lite::pin_project; /// `SeqHandler` is an actix `Handler` that enforces that extractors errors are returned in the /// same order as they are defined in the wrapped handler. This is needed because, by default, actix -/// to resolves the extractors concurrently, whereas we always need the authentication extractor to +/// resolves the extractors concurrently, whereas we always need the authentication extractor to /// throw first. #[derive(Clone)] pub struct SeqHandler(pub H);