]> git.lizzy.rs Git - rust.git/commitdiff
Fix deprecated `comm` link.
authorWangshan Lu <wisagan@gmail.com>
Sun, 15 Mar 2015 13:42:58 +0000 (21:42 +0800)
committerWangshan Lu <wisagan@gmail.com>
Sun, 15 Mar 2015 13:42:58 +0000 (21:42 +0800)
src/libstd/lib.rs

index 81e2113cfdfc1b5a7d9262473ddf39ffbab438c3..9864e35d9a4ef4b2b1ca9dfa2f403e4cdfc2451e 100644 (file)
 //!
 //! ## 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