From: Ari Seyhun Date: Mon, 3 Nov 2025 13:20:25 +0000 (+1100) Subject: sync: add missing period to `mpsc::Sender::try_send` docs (#7721) X-Git-Url: https://git.feebdaed.xyz/?a=commitdiff_plain;h=12319f26d07cd0821cdb45f50cf2b13200f2d04e;p=0xmirror%2Ftokio.git sync: add missing period to `mpsc::Sender::try_send` docs (#7721) --- diff --git a/tokio/src/sync/mpsc/bounded.rs b/tokio/src/sync/mpsc/bounded.rs index 4fc300ca..97db06b3 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