From 1d01f3715a208ce9a19c65be9d5929881e98abee Mon Sep 17 00:00:00 2001 From: Adam Szkoda Date: Mon, 10 Nov 2014 08:22:10 +0100 Subject: [PATCH] Fix broken documentation link --- 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 7eac455f97f25..3940d7db66e4b 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.