From 514497e347afa9e8e2d1766a9fd6c3e11511e2b1 Mon Sep 17 00:00:00 2001 From: Nathaniel Theis Date: Sun, 11 Jan 2015 00:12:00 +0000 Subject: [PATCH] Fix dead link (s/task/thread/) --- 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 67080f4551f0..f3ba3d297ea5 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -73,7 +73,7 @@ //! //! ## Concurrency, I/O, and the runtime //! -//! The [`task`](task/index.html) module contains Rust's threading abstractions, +//! 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 [`atomics`](sync/atomics/index.html).