about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-08-04 18:00:52 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-08-04 18:00:52 +0530
commitf7eecc93f34cbeee52dca319b59474824b15c17e (patch)
tree51e69e5af7301e1bab69998a7f000211387ae85b
parent3e3a9b4eec790bda28a86fd204d90b527d207a5f (diff)
parent1d3818ab7caa11d0244ce87ac09250a49db6392d (diff)
downloadrust-f7eecc93f34cbeee52dca319b59474824b15c17e.tar.gz
rust-f7eecc93f34cbeee52dca319b59474824b15c17e.zip
Rollup merge of #27398 - tshepang:patch-5, r=steveklabnik
-rw-r--r--src/libstd/prelude/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/prelude/mod.rs b/src/libstd/prelude/mod.rs
index 275f415c6fc..4597db41e90 100644
--- a/src/libstd/prelude/mod.rs
+++ b/src/libstd/prelude/mod.rs
@@ -11,8 +11,8 @@
 //! The Rust Prelude
 //!
 //! Because `std` is required by most serious Rust software, it is
-//! imported at the topmost level of every crate by default, as if the
-//! first line of each crate was
+//! imported at the topmost level of every crate by default, as if
+//! each crate contains the following:
 //!
 //! ```ignore
 //! extern crate std;
@@ -23,7 +23,7 @@
 //! etc.
 //!
 //! Additionally, `std` contains a versioned *prelude* that reexports many of the
-//! most common traits, types and functions. *The contents of the prelude are
+//! most common traits, types, and functions. *The contents of the prelude are
 //! imported into every module by default*.  Implicitly, all modules behave as if
 //! they contained the following [`use` statement][book-use]:
 //!