Skip to content

Commit

Permalink
fix: broken Service link (#659)
Browse files Browse the repository at this point in the history
  • Loading branch information
PoorlyDefinedBehaviour authored and hawkw committed Jun 17, 2022
1 parent d989a82 commit c3d1607
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tower-layer/src/lib.rs
Expand Up @@ -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;
Expand Down Expand Up @@ -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<S> {
/// The wrapped service
type Service;
Expand Down

0 comments on commit c3d1607

Please sign in to comment.