diff options
| author | bors <bors@rust-lang.org> | 2014-05-10 03:36:30 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-10 03:36:30 -0700 |
| commit | e850316408bbe6254305cf4aa7c65381dc475192 (patch) | |
| tree | 9e942f8281b75bc77dc8c08ccfeed9cb9ebfb27f /src/libstd/lib.rs | |
| parent | 061450dcf14ea88c77312764fd80d712ff47fdb8 (diff) | |
| parent | 620b4352f28d58801d82d58faa0a71f75ad9087f (diff) | |
| download | rust-e850316408bbe6254305cf4aa7c65381dc475192.tar.gz rust-e850316408bbe6254305cf4aa7c65381dc475192.zip | |
auto merge of #14068 : alexcrichton/rust/rustdoc-xcrate-links, r=brson
This should improve the libcore experience quite a bit when looking at the libstd documentation.
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index dae28777867..0ac6f1dba4f 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -16,11 +16,11 @@ //! //! ## Intrinsic types and operations //! -//! The [`ptr`](ptr/index.html), [`mem`](mem/index.html), -//! and [`cast`](cast/index.html) modules deal with unsafe pointers, +//! The [`ptr`](../core/ptr/index.html), [`mem`](../core/mem/index.html), +//! and [`cast`](../core/cast/index.html) modules deal with unsafe pointers, //! memory manipulation, and coercion. -//! [`kinds`](kinds/index.html) defines the special built-in traits, -//! and [`raw`](raw/index.html) the runtime representation of Rust types. +//! [`kinds`](../core/kinds/index.html) defines the special built-in traits, +//! and [`raw`](../core/raw/index.html) the runtime representation of Rust types. //! These are some of the lowest-level building blocks of Rust //! abstractions. //! @@ -35,9 +35,9 @@ //! //! The [`option`](option/index.html) and [`result`](result/index.html) //! modules define optional and error-handling types, `Option` and `Result`. -//! [`iter`](iter/index.html) defines Rust's iterator protocol +//! [`iter`](../core/iter/index.html) defines Rust's iterator protocol //! along with a wide variety of iterators. -//! [`Cell` and `RefCell`](cell/index.html) are for creating types that +//! [`Cell` and `RefCell`](../core/cell/index.html) are for creating types that //! manage their own mutability. //! //! ## Vectors, slices and strings |
