We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 693f365 commit 7cf3556Copy full SHA for 7cf3556
library/std/src/sync/mpmc/mod.rs
@@ -6,9 +6,10 @@
6
//! * [`Sender`]
7
//! * [`Receiver`]
8
//!
9
-//! [`Sender`]s are used to send data to a set of [`Receiver`]s. Both
10
-//! sender and receiver are cloneable (multi-producer) such that many threads can send
11
-//! simultaneously to receivers (multi-consumer).
+//! [`Sender`]s are used to send data to a set of [`Receiver`]s where each item
+//! sent is delivered to (at most) one receiver. Both sender and receiver are
+//! cloneable (multi-producer) such that many threads can send simultaneously
12
+//! to receivers (multi-consumer).
13
14
//! These channels come in two flavors:
15
0 commit comments