summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-18 14:39:16 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-18 22:21:07 +0530
commitdda42204be8948a5f2751e5bd1b30760d56b7c24 (patch)
treeddcaae4be7a40064f07d7aff2517edab9d6103a2 /src/libstd/lib.rs
parenta7eca31d8095c5acff8ec47b141ddd73e1d64fda (diff)
parenta89dc2dbf64c13480aaa77fd3b5e5cca6774c14d (diff)
downloadrust-dda42204be8948a5f2751e5bd1b30760d56b7c24.tar.gz
rust-dda42204be8948a5f2751e5bd1b30760d56b7c24.zip
Rollup merge of #23392 - WiSaGaN:bugfix/fix_deprecate_link, r=Manishearth
 Since module `std::sync::mpsc` is stable now, fix the deprecated link `comm` with `sync::mpsc`.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 41d5b3ce75e..b055796ba54 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -73,10 +73,10 @@
 //!
 //! ## Concurrency, I/O, and the runtime
 //!
-//! The [`thread`](thread/index.html) module contains Rust's threading abstractions,
-//! while [`comm`](comm/index.html) contains the channel types for message
-//! passing. [`sync`](sync/index.html) contains further, primitive, shared
-//! memory types, including [`atomic`](sync/atomic/index.html).
+//! The [`thread`](thread/index.html) module contains Rust's threading abstractions.
+//! [`sync`](sync/index.html) contains further, primitive, shared memory types,
+//! including [`atomic`](sync/atomic/index.html), and [`mpsc`](sync/mpmc/index.html),
+//! which contains the channel types for message passing.
 //!
 //! Common types of I/O, including files, TCP, UDP, pipes, Unix domain sockets,
 //! timers, and process spawning, are defined in the