about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-25 02:21:32 -0800
committerbors <bors@rust-lang.org>2014-01-25 02:21:32 -0800
commit6516b303b5f35e81350cccdf6629766e2b0a027e (patch)
tree3ecb89cc0098191efbf9683923ba0b734ede6f16 /src/libstd/rt
parentde57a22b9a8c8416cace31c9bd3ec4c9a6888017 (diff)
parente8baed0b2d41a227731321cb41accd7ec24655b3 (diff)
downloadrust-6516b303b5f35e81350cccdf6629766e2b0a027e.tar.gz
rust-6516b303b5f35e81350cccdf6629766e2b0a027e.zip
auto merge of #11570 : derekchiang/rust/fix-rt-docs, r=alexcrichton
Diffstat (limited to 'src/libstd/rt')
-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`
 
 */