From ef0bbaac6b7d830a4c486cb1232b06da0adc0647 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 5 Feb 2015 22:07:47 -0500 Subject: [PATCH] Mention the queueueue-ness of mpsc. Fixes #21915 --- src/libstd/sync/mpsc/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs index 39c57a21d752a..2e60d684d6823 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: