Skip to content

Commit a993703

Browse files
committed
std: Doc typos
1 parent 1868cf5 commit a993703

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/libstd/lib.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
//! memory types, including [`atomics`](sync/atomics/index.html).
8282
//!
8383
//! Common types of I/O, including files, TCP, UPD, pipes, Unix domain sockets,
84-
//! timers, and process spawning, are defined in the [`io`](io/index.html).
84+
//! timers, and process spawning, are defined in the [`io`](io/index.html) module.
8585
//!
8686
//! Rust's I/O and concurrency depends on a small runtime interface
8787
//! that lives, along with its support code, in mod [`rt`](rt/index.html).
@@ -90,10 +90,11 @@
9090
//!
9191
//! ## The Rust prelude and macros
9292
//!
93-
//! Finally, the [`prelude`](prelude/index.html) defines a set of
93+
//! Finally, the [`prelude`](prelude/index.html) defines a
9494
//! common set of traits, types, and functions that are made available
9595
//! to all code by default. [`macros`](macros/index.html) contains
96-
//! all the standard macros, such as `assert!`, `fail!`, `println!`.
96+
//! all the standard macros, such as `assert!`, `fail!`, `println!`,
97+
//! and `format!`, also available to all Rust code.
9798
9899
#![crate_id = "std#0.11-pre"]
99100
#![comment = "The Rust standard library"]

0 commit comments

Comments
 (0)