about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-11-07 23:01:11 -0800
committerbors <bors@rust-lang.org>2013-11-07 23:01:11 -0800
commitacbcb9ed2e24137040a4c0a4f87034e943036ecb (patch)
tree4a04ad04672e9f5fbd3c0bf65d5ae144de49675f
parent075347b4453e4b4bc4dd2d2370e408e92041d4ce (diff)
parente6a1f6d7df80f1063116fa48d4971f6baca8daaa (diff)
downloadrust-acbcb9ed2e24137040a4c0a4f87034e943036ecb.tar.gz
rust-acbcb9ed2e24137040a4c0a4f87034e943036ecb.zip
auto merge of #10341 : willingc/rust/minor-docfix, r=huonw
...rt::io
-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 68f13dc8992..880e71be8a1 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -21,7 +21,7 @@
 //! boxes (`owned`), and unsafe and borrowed pointers (`ptr`, `borrowed`).
 //! Additionally, `std` provides pervasive types (`option` and `result`),
 //! task creation and communication primitives (`task`, `comm`), platform
-//! abstractions (`os` and `path`), basic I/O abstractions (`io`), common
+//! abstractions (`os` and `path`), basic I/O abstractions (`rt::io`), common
 //! traits (`kinds`, `ops`, `cmp`, `num`, `to_str`), and complete bindings
 //! to the C standard library (`libc`).
 //!