From 68288ef44f34fe6d76edfdb3004dbcea15f36b4b Mon Sep 17 00:00:00 2001 From: nectarine Date: Mon, 23 Oct 2023 07:10:54 +0100 Subject: [PATCH] Replace reference to multiple with singular in docs. (#2285) Co-authored-by: Fred Cook --- axum/src/docs/extract.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/extract.md b/axum/src/docs/extract.md index f7669f44..384b233d 100644 --- a/axum/src/docs/extract.md +++ b/axum/src/docs/extract.md @@ -569,7 +569,7 @@ let app = Router::new().route( # Accessing other extractors in `FromRequest` or `FromRequestParts` implementations -When defining custom extractors you often need to access another extractors +When defining custom extractors you often need to access another extractor in your implementation. ```rust