about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-08 23:01:40 -0700
committerbors <bors@rust-lang.org>2014-05-08 23:01:40 -0700
commitfcf25ae83d1f6bd7232d74ec5c1f4f1c642ec5b2 (patch)
treed68d09fde5ff5d9e9875d23506c682ab88579fc9 /src/libstd/lib.rs
parenta990920c6fff9b762c3d0968ff0a5fdcce6d2b39 (diff)
parent2aa42533772a6b3cd406c34f0de12327320cb875 (diff)
downloadrust-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.rs7
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"]