From fdf034655685bfb142f4ffd463a8c1ec59cc611f Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Sun, 9 Mar 2025 07:55:15 +0100 Subject: [PATCH] style: fix `rustdoc::broken_intra_doc_links` (#1068) --- src/transport/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/transport/mod.rs b/src/transport/mod.rs index 1bc4f5d..c3a8034 100644 --- a/src/transport/mod.rs +++ b/src/transport/mod.rs @@ -141,8 +141,8 @@ pub trait Transport { fn send_raw(&self, envelope: &Envelope, email: &[u8]) -> Result; - /// Shuts down the transport. Future calls to [`send`] and [`send_raw`] might - /// fail. + /// Shuts down the transport. Future calls to [`Self::send`] and + /// [`Self::send_raw`] might fail. fn shutdown(&self) {} } @@ -171,7 +171,7 @@ pub trait AsyncTransport { async fn send_raw(&self, envelope: &Envelope, email: &[u8]) -> Result; - /// Shuts down the transport. Future calls to [`send`] and [`send_raw`] might - /// fail. + /// Shuts down the transport. Future calls to [`Self::send`] and + /// [`Self::send_raw`] might fail. async fn shutdown(&self) {} }