File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 278
278
//!
279
279
//! ## `watch` channel
280
280
//!
281
- //! The [`watch` channel] supports sending **many** values from a **single **
281
+ //! The [`watch` channel] supports sending **many** values from a **many **
282
282
//! producer to **many** consumers. However, only the **most recent** value is
283
283
//! stored in the channel. Consumers are notified when a new value is sent, but
284
284
//! there is no guarantee that consumers will see **all** values.
Original file line number Diff line number Diff line change 1
1
#![ cfg_attr( not( feature = "sync" ) , allow( dead_code, unreachable_pub) ) ]
2
2
3
- //! A single -producer, multi-consumer channel that only retains the *last* sent
3
+ //! A multi -producer, multi-consumer channel that only retains the *last* sent
4
4
//! value.
5
5
//!
6
6
//! This channel is useful for watching for changes to a value from multiple
You can’t perform that action at this time.
0 commit comments