about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorDerek Chiang <derekchiang93@gmail.com>2014-01-16 01:06:20 +0800
committerDerek Chiang <derekchiang93@gmail.com>2014-01-25 02:16:17 -0500
commite8baed0b2d41a227731321cb41accd7ec24655b3 (patch)
tree3ecb89cc0098191efbf9683923ba0b734ede6f16 /src/libstd
parentde57a22b9a8c8416cace31c9bd3ec4c9a6888017 (diff)
downloadrust-e8baed0b2d41a227731321cb41accd7ec24655b3.tar.gz
rust-e8baed0b2d41a227731321cb41accd7ec24655b3.zip
Fix some docs about rt
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rt/mod.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs
index 7aa966802f2..9088ee6898b 100644
--- a/src/libstd/rt/mod.rs
+++ b/src/libstd/rt/mod.rs
@@ -41,16 +41,14 @@ out of `rt` as development proceeds.
 Several modules in `core` are clients of `rt`:
 
 * `std::task` - The user-facing interface to the Rust task model.
-* `std::task::local_data` - The interface to local data.
+* `std::local_data` - The interface to local data.
 * `std::gc` - The garbage collector.
 * `std::unstable::lang` - Miscellaneous lang items, some of which rely on `std::rt`.
 * `std::condition` - Uses local data.
 * `std::cleanup` - Local heap destruction.
 * `std::io` - In the future `std::io` will use an `rt` implementation.
 * `std::logging`
-* `std::pipes`
 * `std::comm`
-* `std::stackwalk`
 
 */