From eb49ea4bc172963fb9881f54dfbd4acc443dffda Mon Sep 17 00:00:00 2001 From: Fredrik Enestad Date: Tue, 14 Mar 2023 18:14:26 +0100 Subject: [PATCH] Fix typo in extractors docs (#1852) --- axum-core/src/extract/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axum-core/src/extract/mod.rs b/axum-core/src/extract/mod.rs index aec7d37e..1113a1ee 100644 --- a/axum-core/src/extract/mod.rs +++ b/axum-core/src/extract/mod.rs @@ -35,7 +35,7 @@ mod private { /// If your extractor needs to consume the request body then you should implement [`FromRequest`] /// and not [`FromRequestParts`]. /// -/// See [`axum::extract`] for more general docs about extraxtors. +/// See [`axum::extract`] for more general docs about extractors. /// /// [`axum::extract`]: https://docs.rs/axum/0.6.0/axum/extract/index.html #[async_trait] @@ -62,7 +62,7 @@ pub trait FromRequestParts: Sized { /// If your extractor doesn't need to consume the request body then you should implement /// [`FromRequestParts`] and not [`FromRequest`]. /// -/// See [`axum::extract`] for more general docs about extraxtors. +/// See [`axum::extract`] for more general docs about extractors. /// /// # What is the `B` type parameter? ///