diff --git a/src/libcore/result.rs b/src/libcore/result.rs index 62e1bcd827a..ee5bb821798 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -92,7 +92,7 @@ //! useful value. //! //! Consider the `write_line` method defined for I/O types -//! by the [`Writer`](../io/trait.Writer.html) trait: +//! by the [`Writer`](../old_io/trait.Writer.html) trait: //! //! ``` //! # #![feature(old_io)] diff --git a/src/librustc/plugin/mod.rs b/src/librustc/plugin/mod.rs index 711ed43fe06..3162c4fc570 100644 --- a/src/librustc/plugin/mod.rs +++ b/src/librustc/plugin/mod.rs @@ -47,7 +47,7 @@ //! #![plugin(myplugin)] //! ``` //! -//! See [the compiler plugin guide](../../guide-plugin.html) +//! See the [Plugins Chapter](../../book/plugins.html) of the book //! for more examples. pub use self::registry::Registry; diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 3724b26b202..fc201a6fe62 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -67,9 +67,8 @@ //! module encapsulates the platform-specific rules for dealing //! with file paths. //! -//! `std` also includes modules for interoperating with the -//! C language: [`c_str`](c_str/index.html) and -//! [`c_vec`](c_vec/index.html). +//! `std` also includes the [`ffi`](ffi/index.html) module for interoperating +//! with the C language. //! //! ## Concurrency, I/O, and the runtime //!