diff --git a/tokio/src/sync/broadcast.rs b/tokio/src/sync/broadcast.rs index 887080199..2e3f9689c 100644 --- a/tokio/src/sync/broadcast.rs +++ b/tokio/src/sync/broadcast.rs @@ -1215,6 +1215,12 @@ impl Receiver { } /// Receives the next value for this receiver. /// + /// Equivalent to: + /// + /// ```ignore + /// async fn recv(&self) -> Result; + /// ``` + /// /// Each [`Receiver`] handle will receive a clone of all values sent /// **after** it has subscribed. ///