about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-11-12 17:22:05 +0000
committerbors <bors@rust-lang.org>2014-11-12 17:22:05 +0000
commite1149f0223e28b320a3f4d66981ce09607fb6535 (patch)
tree3b128d0a56b0741341338ef9a9f8f8490e074ce5 /src/libstd
parente4ead7b034c96b705ec34b8325f5f9f778f1cbb9 (diff)
parent1d01f3715a208ce9a19c65be9d5929881e98abee (diff)
downloadrust-e1149f0223e28b320a3f4d66981ce09607fb6535.tar.gz
rust-e1149f0223e28b320a3f4d66981ce09607fb6535.zip
auto merge of #18830 : adaszko/rust/patch-1, r=steveklabnik
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 7eac455f97f..3940d7db66e 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -76,7 +76,7 @@
 //! The [`task`](task/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).
+//! memory types, including [`atomic`](sync/atomic/index.html).
 //!
 //! Common types of I/O, including files, TCP, UDP, pipes, Unix domain sockets,
 //! timers, and process spawning, are defined in the [`io`](io/index.html) module.