From e0082a3f87a266fe6832fcd634b5e6c295daddf6 Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 31 Dec 2021 13:32:55 -0800 Subject: [PATCH] Fix the link to "Routing to services and backpressure" (#680) In `Router::route`, the link to the "Routing to services and backpressure" section on the crate documentation page directed to . This change makes it direct to the main crate documentation page. --- axum/src/docs/routing/route.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/routing/route.md b/axum/src/docs/routing/route.md index 62c97878..9a076b62 100644 --- a/axum/src/docs/routing/route.md +++ b/axum/src/docs/routing/route.md @@ -164,7 +164,7 @@ Routing to arbitrary services in this way has complications for backpressure ([`Service::poll_ready`]). See the [Routing to services and backpressure] module for more details. -[Routing to services and backpressure]: /#routing-to-services-and-backpressure +[Routing to services and backpressure]: ../index.html#routing-to-services-and-backpressure # Panics