From 12319f26d07cd0821cdb45f50cf2b13200f2d04e Mon Sep 17 00:00:00 2001 From: Ari Seyhun Date: Tue, 4 Nov 2025 00:20:25 +1100 Subject: [PATCH] sync: add missing period to `mpsc::Sender::try_send` docs (#7721) --- tokio/src/sync/mpsc/bounded.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/sync/mpsc/bounded.rs b/tokio/src/sync/mpsc/bounded.rs index 4fc300ca4..97db06b39 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