From c3d16077df9f83a4ef73b83619292947edba0eb2 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 7 Apr 2022 14:33:15 -0300 Subject: [PATCH] fix: broken Service link (#659) --- tower-layer/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tower-layer/src/lib.rs b/tower-layer/src/lib.rs index 218737550..48ff79fa2 100644 --- a/tower-layer/src/lib.rs +++ b/tower-layer/src/lib.rs @@ -14,7 +14,7 @@ //! //! A middleware implements the [`Layer`] and [`Service`] trait. //! -//! [`Service`]: https://docs.rs/tower/trait.Service.html +//! [`Service`]: https://docs.rs/tower/latest/tower/trait.Service.html mod identity; mod layer_fn; @@ -90,7 +90,7 @@ pub use self::{ /// is also decoupled from client or server concerns. In other words, the same /// log middleware could be used in either a client or a server. /// -/// [`Service`]: https://docs.rs/tower/trait.Service.html +/// [`Service`]: https://docs.rs/tower/latest/tower/trait.Service.html pub trait Layer { /// The wrapped service type Service;