about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorCarol Willing <carolcode@willingconsulting.com>2013-11-07 15:22:36 -0800
committerCarol Willing <carolcode@willingconsulting.com>2013-11-07 15:29:06 -0800
commite6a1f6d7df80f1063116fa48d4971f6baca8daaa (patch)
tree56eec0be038c9f8776d9b38f627d90f95e492afc /src/libstd
parent03f30515f4c8ca91dc7ceba3628f6eb1b3259ac5 (diff)
downloadrust-e6a1f6d7df80f1063116fa48d4971f6baca8daaa.tar.gz
rust-e6a1f6d7df80f1063116fa48d4971f6baca8daaa.zip
Edited comment for docs to show std::io is deleted and replaced by std::rt::io
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 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`).
 //!