diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-02-05 22:07:47 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-02-05 22:07:47 -0500 |
| commit | ef0bbaac6b7d830a4c486cb1232b06da0adc0647 (patch) | |
| tree | 1410228faaa536514d0fe7a2637a641ad68c4a06 | |
| parent | fa28f023c23ce1c72d8a83478a0263dcc5083078 (diff) | |
| download | rust-ef0bbaac6b7d830a4c486cb1232b06da0adc0647.tar.gz rust-ef0bbaac6b7d830a4c486cb1232b06da0adc0647.zip | |
Mention the queueueue-ness of mpsc.
Fixes #21915
| -rw-r--r-- | src/libstd/sync/mpsc/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs index 39c57a21d75..2e60d684d68 100644 --- a/src/libstd/sync/mpsc/mod.rs +++ b/src/libstd/sync/mpsc/mod.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! Multi-producer, single-consumer communication primitives threads +//! Multi-producer, single-consumer FIFO queue communication primitives. //! //! This module provides message-based communication over channels, concretely //! defined among three types: |
