From d944689cf6c702170c663a073810b019adc8bcca Mon Sep 17 00:00:00 2001 From: Wangshan Lu Date: Mon, 23 Mar 2015 19:11:03 +0800 Subject: [PATCH] Fix dead link for std::sync::mpsc. --- src/libstd/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index b055796ba547f..244a51e5efcc2 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,