about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-06-24 14:32:46 -0700
committerBrian Anderson <banderson@mozilla.com>2015-06-24 14:33:41 -0700
commit9b30eabc22dd3a4b878109b1da08b5ab4e228a40 (patch)
tree5c960b34c02a4a315c1524b7109bc901a261ed90 /src/libstd
parent21dd4e2a0627daa2f9023084e253e75ccfaa5137 (diff)
downloadrust-9b30eabc22dd3a4b878109b1da08b5ab4e228a40.tar.gz
rust-9b30eabc22dd3a4b878109b1da08b5ab4e228a40.zip
Fix capitalization in std docs
"Rust" and "The Rust Standard Library" are capitalized.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index e27e4ba5af2..21172918177 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -13,7 +13,7 @@
 //! The Rust Standard Library provides the essential runtime
 //! functionality for building portable Rust software.
 //!
-//! The rust standard library is available to all rust crates by
+//! The Rust Standard Library is available to all Rust crates by
 //! default, just as if contained an `extern crate std` import at the
 //! crate root. Therefore the standard library can be accessed in
 //! `use` statements through the path `std`, as in `use std::thread`,