Skip to content

Commit f7eecc9

Browse files
committed
Rollup merge of rust-lang#27398 - tshepang:patch-5, r=steveklabnik
2 parents 3e3a9b4 + 1d3818a commit f7eecc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/prelude/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
//! The Rust Prelude
1212
//!
1313
//! Because `std` is required by most serious Rust software, it is
14-
//! imported at the topmost level of every crate by default, as if the
15-
//! first line of each crate was
14+
//! imported at the topmost level of every crate by default, as if
15+
//! each crate contains the following:
1616
//!
1717
//! ```ignore
1818
//! extern crate std;
@@ -23,7 +23,7 @@
2323
//! etc.
2424
//!
2525
//! Additionally, `std` contains a versioned *prelude* that reexports many of the
26-
//! most common traits, types and functions. *The contents of the prelude are
26+
//! most common traits, types, and functions. *The contents of the prelude are
2727
//! imported into every module by default*. Implicitly, all modules behave as if
2828
//! they contained the following [`use` statement][book-use]:
2929
//!

0 commit comments

Comments
 (0)