From 9b30eabc22dd3a4b878109b1da08b5ab4e228a40 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 24 Jun 2015 14:32:46 -0700 Subject: [PATCH] Fix capitalization in std docs "Rust" and "The Rust Standard Library" are capitalized. --- src/libstd/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index e27e4ba5af2cf..2117291817754 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`,