From bad3abb960a7bc726dfcaaf15ddca55e54f0aaa7 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 1 Mar 2022 14:09:30 +0100 Subject: [PATCH] Remove out of date docs These accidentally weren't removed in https://github.com/tokio-rs/axum/pull/790 --- axum-extra/src/routing/typed.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/axum-extra/src/routing/typed.rs b/axum-extra/src/routing/typed.rs index 89294daf..22c93c56 100644 --- a/axum-extra/src/routing/typed.rs +++ b/axum-extra/src/routing/typed.rs @@ -88,8 +88,6 @@ use http::Uri; /// things, create links to known paths and have them verified statically. Note that the /// [`Display`] implementation for each field must return something that's compatible with its /// [`Deserialize`] implementation. -/// - A [`TryFrom<_> for Uri`](std::convert::TryFrom) implementation to converting your paths into -/// [`Uri`](axum::http::Uri). /// /// Additionally the macro will verify the captures in the path matches the fields of the struct. /// For example this fails to compile since the struct doesn't have a `team_id` field: