Auto merge of #25907 - tshepang:patch-8, r=Gankro

This commit is contained in:
bors 2015-05-31 23:13:26 +00:00
commit 16d037866d

View file

@ -30,7 +30,7 @@
//! You can get a non-`'static` `&str` by taking a slice of a `String`:
//!
//! ```
//! # let some_string = "Hello, world.".to_string();
//! let some_string = "Hello, world.".to_string();
//! let s = &some_string;
//! ```
//!