From f8683f37f8549ac6d74357a3e99ca82847143c0f Mon Sep 17 00:00:00 2001 From: Liigo Zhuang Date: Fri, 26 Aug 2022 17:30:38 +0800 Subject: [PATCH] Fix broken docs links (#1332) --- 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 a7c04122..36e42a45 100644 --- a/axum-core/src/extract/mod.rs +++ b/axum-core/src/extract/mod.rs @@ -35,7 +35,7 @@ mod private { /// /// See [`axum::extract`] for more general docs about extraxtors. /// -/// [`axum::extract`]: https://docs.rs/axum/0.6/axum/extract/index.html +/// [`axum::extract`]: https://docs.rs/axum/0.6.0-rc.1/axum/extract/index.html #[async_trait] pub trait FromRequestParts: Sized { /// If the extractor fails it'll use this "rejection" type. A rejection is @@ -98,7 +98,7 @@ pub trait FromRequestParts: Sized { /// This ensures your extractor is as flexible as possible. /// /// [`http::Request`]: http::Request -/// [`axum::extract`]: https://docs.rs/axum/0.6/axum/extract/index.html +/// [`axum::extract`]: https://docs.rs/axum/0.6.0-rc.1/axum/extract/index.html #[async_trait] pub trait FromRequest: Sized { /// If the extractor fails it'll use this "rejection" type. A rejection is