]> git.feebdaed.xyz Git - 0xmirror/tokio.git/commitdiff
sync: add missing period to `mpsc::Sender::try_send` docs (#7721)
authorAri Seyhun <dev@tqwewe.com>
Mon, 3 Nov 2025 13:20:25 +0000 (00:20 +1100)
committerGitHub <noreply@github.com>
Mon, 3 Nov 2025 13:20:25 +0000 (21:20 +0800)
tokio/src/sync/mpsc/bounded.rs

index 4fc300ca4e37211045e8a6db820462a6a1be1959..97db06b390863006aff4cfb32269ad6f4be3b638 100644 (file)
@@ -863,7 +863,7 @@ impl<T> Sender<T> {
         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