Skip to content

Commit 6516b30

Browse files
committed
auto merge of #11570 : derekchiang/rust/fix-rt-docs, r=alexcrichton
2 parents de57a22 + e8baed0 commit 6516b30

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

doc/guide-runtime.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Some benefits of using libgreen are:
202202

203203
M:N threading is built upon the concept of a pool of M OS threads (which
204204
libgreen refers to as schedulers), able to run N Rust tasks. This abstraction is
205-
encompassed in libgreen's [`SchedPool`][schedpool] type. This type allows for
205+
encompassed in libgreen's [`SchedPool`](green/struct.SchedPool.html) type. This type allows for
206206
fine-grained control over the pool of schedulers which will be used to run Rust
207207
tasks.
208208

src/libstd/rt/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,14 @@ out of `rt` as development proceeds.
4141
Several modules in `core` are clients of `rt`:
4242
4343
* `std::task` - The user-facing interface to the Rust task model.
44-
* `std::task::local_data` - The interface to local data.
44+
* `std::local_data` - The interface to local data.
4545
* `std::gc` - The garbage collector.
4646
* `std::unstable::lang` - Miscellaneous lang items, some of which rely on `std::rt`.
4747
* `std::condition` - Uses local data.
4848
* `std::cleanup` - Local heap destruction.
4949
* `std::io` - In the future `std::io` will use an `rt` implementation.
5050
* `std::logging`
51-
* `std::pipes`
5251
* `std::comm`
53-
* `std::stackwalk`
5452
5553
*/
5654

0 commit comments

Comments
 (0)