From ca268f61bcb2a26337e7ef457524d7ae4d2e59c6 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Sun, 13 Feb 2022 22:23:12 +0100 Subject: [PATCH] fix docs link --- axum-macros/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/axum-macros/src/lib.rs b/axum-macros/src/lib.rs index e6751698..22e9a99a 100644 --- a/axum-macros/src/lib.rs +++ b/axum-macros/src/lib.rs @@ -389,6 +389,8 @@ pub fn debug_handler(_attr: TokenStream, input: TokenStream) -> TokenStream { /// Derive an implementation of [`axum_extra::routing::TypedPath`]. /// /// See that trait for more details. +/// +/// [`axum_extra::routing::TypedPath`]: https://docs.rs/axum-extra/latest/axum_extra/routing/trait.TypedPath.html #[proc_macro_derive(TypedPath, attributes(typed_path))] pub fn derive_typed_path(input: TokenStream) -> TokenStream { expand_with(input, typed_path::expand)