File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
library/std/src/sync/mpsc Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -303,12 +303,11 @@ pub struct IntoIter<T> {
303
303
rx : Receiver < T > ,
304
304
}
305
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.
306
+ /// The sending-half of Rust's asynchronous [`channel`] type.
308
307
///
309
308
/// Messages can be sent through this channel with [`send`].
310
309
///
311
- /// Note: all senders (the original and the clones) need to be dropped for the receiver
310
+ /// Note: all senders (the original and its clones) need to be dropped for the receiver
312
311
/// to stop blocking to receive messages with [`Receiver::recv`].
313
312
///
314
313
/// [`send`]: Sender::send
You can’t perform that action at this time.
0 commit comments