diff --git a/tokio/src/sync/broadcast.rs b/tokio/src/sync/broadcast.rs index 4b36452ce..3f8e6c720 100644 --- a/tokio/src/sync/broadcast.rs +++ b/tokio/src/sync/broadcast.rs @@ -501,7 +501,8 @@ impl Sender { /// /// On success, the number of subscribed [`Receiver`] handles is returned. /// This does not mean that this number of receivers will see the message as - /// a receiver may drop before receiving the message. + /// a receiver may drop or lag ([see lagging](self#lagging)) before receiving + /// the message. /// /// # Note ///