diff options
| author | bors <bors@rust-lang.org> | 2014-05-08 23:01:40 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-08 23:01:40 -0700 |
| commit | fcf25ae83d1f6bd7232d74ec5c1f4f1c642ec5b2 (patch) | |
| tree | d68d09fde5ff5d9e9875d23506c682ab88579fc9 /src/libstd/lib.rs | |
| parent | a990920c6fff9b762c3d0968ff0a5fdcce6d2b39 (diff) | |
| parent | 2aa42533772a6b3cd406c34f0de12327320cb875 (diff) | |
| download | rust-fcf25ae83d1f6bd7232d74ec5c1f4f1c642ec5b2.tar.gz rust-fcf25ae83d1f6bd7232d74ec5c1f4f1c642ec5b2.zip | |
auto merge of #14019 : brson/rust/docs, r=alexcrichton
Just small bits of polish.
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 8a783b6f378..dae28777867 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -81,7 +81,7 @@ //! memory types, including [`atomics`](sync/atomics/index.html). //! //! 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 //! that lives, along with its support code, in mod [`rt`](rt/index.html). @@ -90,10 +90,11 @@ //! //! ## 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 //! 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"] #![comment = "The Rust standard library"] |
