diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-06 16:20:11 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-06 19:42:34 +0530 |
| commit | 1a2b60267526c3b550ef9dda23ab94e4b6ba16f2 (patch) | |
| tree | b1751cd581879848b18f5fdb71194229c1bbbfc3 /src/libstd/sync | |
| parent | 40d1b23fdd4b793828b39f889d66fdd2b617f909 (diff) | |
| parent | ef0bbaac6b7d830a4c486cb1232b06da0adc0647 (diff) | |
| download | rust-1a2b60267526c3b550ef9dda23ab94e4b6ba16f2.tar.gz rust-1a2b60267526c3b550ef9dda23ab94e4b6ba16f2.zip | |
Rollup merge of #21991 - steveklabnik:gh21915, r=huonw
Fixes #21915
Diffstat (limited to 'src/libstd/sync')
| -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: |
