File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
//! The Rust Prelude
12
12
//!
13
13
//! 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:
16
16
//!
17
17
//! ```ignore
18
18
//! extern crate std;
23
23
//! etc.
24
24
//!
25
25
//! 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
27
27
//! imported into every module by default*. Implicitly, all modules behave as if
28
28
//! they contained the following [`use` statement][book-use]:
29
29
//!
You can’t perform that action at this time.
0 commit comments