diff --git a/tokio/src/sync/mpsc/bounded.rs b/tokio/src/sync/mpsc/bounded.rs index 4fc300ca4e3..97db06b3908 100644 --- a/tokio/src/sync/mpsc/bounded.rs +++ b/tokio/src/sync/mpsc/bounded.rs @@ -863,7 +863,7 @@ impl Sender { self.chan.closed().await; } - /// Attempts to immediately send a message on this `Sender` + /// Attempts to immediately send a message on this `Sender`. /// /// This method differs from [`send`] by returning immediately if the channel's /// buffer is full or no receiver is waiting to acquire some data. Compared