We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents da54108 + 0af9dfc commit f4cd7a5Copy full SHA for f4cd7a5
library/std/src/sync/mpsc/mod.rs
@@ -303,12 +303,11 @@ pub struct IntoIter<T> {
303
rx: Receiver<T>,
304
}
305
306
-/// The sending-half of Rust's asynchronous [`channel`] type. This half can only be
307
-/// owned by one thread, but it can be cloned to send to other threads.
+/// The sending-half of Rust's asynchronous [`channel`] type.
308
///
309
/// Messages can be sent through this channel with [`send`].
310
311
-/// Note: all senders (the original and the clones) need to be dropped for the receiver
+/// Note: all senders (the original and its clones) need to be dropped for the receiver
312
/// to stop blocking to receive messages with [`Receiver::recv`].
313
314
/// [`send`]: Sender::send
0 commit comments