sync: add missing period to mpsc::Sender::try_send docs (#7721)

This commit is contained in:
Ari Seyhun
2025-11-03 21:20:25 +08:00
committed by GitHub
parent 454fd8c347
commit 12319f26d0
+1 -1
View 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