about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorWangshan Lu <wisagan@gmail.com>2015-03-15 21:42:58 +0800
committerWangshan Lu <wisagan@gmail.com>2015-03-15 21:42:58 +0800
commita89dc2dbf64c13480aaa77fd3b5e5cca6774c14d (patch)
tree2669c30fa9cbb4b3a5fcad8b5635197f7be8620b /src/libstd/lib.rs
parent54660fc392343e4ddee8a0ea1ca196ffc533585b (diff)
downloadrust-a89dc2dbf64c13480aaa77fd3b5e5cca6774c14d.tar.gz
rust-a89dc2dbf64c13480aaa77fd3b5e5cca6774c14d.zip
Fix deprecated `comm` link.
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 81e2113cfdf..9864e35d9a4 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