about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-04-04 07:20:04 +0000
committerbors <bors@rust-lang.org>2015-04-04 07:20:04 +0000
commit6971727d45494b8362262bb41a45f2c0c5f162bc (patch)
tree4e5fcbf512e9c285756d84bdf15b77c03d800b63 /src/libstd
parentbcae782aa8acfba62d3446c61f17290c17e7de05 (diff)
parentb62c11023c4fdbb1e6ef9f074310a8e95db7827e (diff)
downloadrust-6971727d45494b8362262bb41a45f2c0c5f162bc.tar.gz
rust-6971727d45494b8362262bb41a45f2c0c5f162bc.zip
Auto merge of #24009 - Manishearth:rollup, r=Manishearth
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 5c9ff544fa3..df81981c3f4 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -77,9 +77,8 @@
 //! 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,
-//! timers, and process spawning, are defined in the
-//! [`old_io`](old_io/index.html) module.
+//! Common types of I/O, including files, TCP, UDP, pipes, Unix domain sockets, and
+//! process spawning, are defined in the [`io`](io/index.html) module.
 //!
 //! Rust's I/O and concurrency depends on a small runtime interface
 //! that lives, along with its support code, in mod [`rt`](rt/index.html).