about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorNathaniel Theis <nttheis@gmail.com>2015-01-11 00:12:00 +0000
committerNathaniel Theis <nttheis@gmail.com>2015-01-11 00:12:00 +0000
commit514497e347afa9e8e2d1766a9fd6c3e11511e2b1 (patch)
tree578f257bada7cbe9736514c06995668501d8abf9 /src/libstd
parent5e834243b6837a2386d623e1d546a3d25057b8f5 (diff)
downloadrust-514497e347afa9e8e2d1766a9fd6c3e11511e2b1.tar.gz
rust-514497e347afa9e8e2d1766a9fd6c3e11511e2b1.zip
Fix dead link (s/task/thread/)
Diffstat (limited to 'src/libstd')
-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 67080f4551f..f3ba3d297ea 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).