|
16 | 16 | //! |
17 | 17 | //! ## Intrinsic types and operations |
18 | 18 | //! |
19 | | -//! The [`ptr`](ptr/index.html), [`mem`](mem/index.html), |
20 | | -//! and [`cast`](cast/index.html) modules deal with unsafe pointers, |
| 19 | +//! The [`ptr`](../core/ptr/index.html), [`mem`](../core/mem/index.html), |
| 20 | +//! and [`cast`](../core/cast/index.html) modules deal with unsafe pointers, |
21 | 21 | //! memory manipulation, and coercion. |
22 | | -//! [`kinds`](kinds/index.html) defines the special built-in traits, |
23 | | -//! and [`raw`](raw/index.html) the runtime representation of Rust types. |
| 22 | +//! [`kinds`](../core/kinds/index.html) defines the special built-in traits, |
| 23 | +//! and [`raw`](../core/raw/index.html) the runtime representation of Rust types. |
24 | 24 | //! These are some of the lowest-level building blocks of Rust |
25 | 25 | //! abstractions. |
26 | 26 | //! |
|
35 | 35 | //! |
36 | 36 | //! The [`option`](option/index.html) and [`result`](result/index.html) |
37 | 37 | //! modules define optional and error-handling types, `Option` and `Result`. |
38 | | -//! [`iter`](iter/index.html) defines Rust's iterator protocol |
| 38 | +//! [`iter`](../core/iter/index.html) defines Rust's iterator protocol |
39 | 39 | //! along with a wide variety of iterators. |
40 | | -//! [`Cell` and `RefCell`](cell/index.html) are for creating types that |
| 40 | +//! [`Cell` and `RefCell`](../core/cell/index.html) are for creating types that |
41 | 41 | //! manage their own mutability. |
42 | 42 | //! |
43 | 43 | //! ## Vectors, slices and strings |
|
0 commit comments