about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWangshan Lu <wisagan@gmail.com>2015-03-23 19:11:03 +0800
committerWangshan Lu <wisagan@gmail.com>2015-03-23 19:11:03 +0800
commitd944689cf6c702170c663a073810b019adc8bcca (patch)
tree986d109635e6407e7e8d1f980b990f1ec3f1c3ae
parentb0aad7dd4fad8d7e2e2f877a511a637258949597 (diff)
downloadrust-d944689cf6c702170c663a073810b019adc8bcca.tar.gz
rust-d944689cf6c702170c663a073810b019adc8bcca.zip
Fix dead link for std::sync::mpsc.
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index b055796ba54..244a51e5efc 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -75,7 +75,7 @@
 //!
 //! 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),
+//! including [`atomic`](sync/atomic/index.html), and [`mpsc`](sync/mpsc/index.html),
 //! which contains the channel types for message passing.
 //!
 //! Common types of I/O, including files, TCP, UDP, pipes, Unix domain sockets,