std: Doc typos

This commit is contained in:
Brian Anderson 2014-05-06 23:29:57 -07:00
parent 1868cf5073
commit a993703f93
1 changed files with 4 additions and 3 deletions

View File

@ -81,7 +81,7 @@
//! memory types, including [`atomics`](sync/atomics/index.html). //! memory types, including [`atomics`](sync/atomics/index.html).
//! //!
//! Common types of I/O, including files, TCP, UPD, pipes, Unix domain sockets, //! Common types of I/O, including files, TCP, UPD, pipes, Unix domain sockets,
//! timers, and process spawning, are defined in the [`io`](io/index.html). //! timers, and process spawning, are defined in the [`io`](io/index.html) module.
//! //!
//! Rust's I/O and concurrency depends on a small runtime interface //! Rust's I/O and concurrency depends on a small runtime interface
//! that lives, along with its support code, in mod [`rt`](rt/index.html). //! that lives, along with its support code, in mod [`rt`](rt/index.html).
@ -90,10 +90,11 @@
//! //!
//! ## The Rust prelude and macros //! ## The Rust prelude and macros
//! //!
//! Finally, the [`prelude`](prelude/index.html) defines a set of //! Finally, the [`prelude`](prelude/index.html) defines a
//! common set of traits, types, and functions that are made available //! common set of traits, types, and functions that are made available
//! to all code by default. [`macros`](macros/index.html) contains //! to all code by default. [`macros`](macros/index.html) contains
//! all the standard macros, such as `assert!`, `fail!`, `println!`. //! all the standard macros, such as `assert!`, `fail!`, `println!`,
//! and `format!`, also available to all Rust code.
#![crate_id = "std#0.11-pre"] #![crate_id = "std#0.11-pre"]
#![comment = "The Rust standard library"] #![comment = "The Rust standard library"]