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> {
303303 rx : Receiver < T > ,
304304}
305305
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.
308307///
309308/// Messages can be sent through this channel with [`send`].
310309///
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
312311/// to stop blocking to receive messages with [`Receiver::recv`].
313312///
314313/// [`send`]: Sender::send
You can’t perform that action at this time.
0 commit comments