From 16e985cc81987e9039fb7583e86c6fc3eb644826 Mon Sep 17 00:00:00 2001 From: Tim Diekmann <21277928+TimDiekmann@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:46:07 +0200 Subject: [PATCH] Update libs/@local/harpc/server/src/router.rs --- libs/@local/harpc/server/src/router.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/@local/harpc/server/src/router.rs b/libs/@local/harpc/server/src/router.rs index d6505d74e41..277235428fd 100644 --- a/libs/@local/harpc/server/src/router.rs +++ b/libs/@local/harpc/server/src/router.rs @@ -58,7 +58,7 @@ pub struct Handler { /// it isn't strictly needed), as well as the use of sessions. To store any information across /// calls, one must make use of smart pointers, such as `Arc`. /// -/// [`Steer`]: tower::steer::Steer +/// [`Steer`]: https://docs.rs/tower/latest/tower/steer/struct.Steer.html pub trait Route { type ResponseBodyError; type Future: Future> + Send;