Rollup merge of #24630 - steveklabnik:quickfix, r=alexcrichton

This commit is contained in:
Steve Klabnik 2015-04-20 21:15:53 -04:00
commit 05ee6f0709

View File

@ -165,7 +165,7 @@ fn main() {
Rust has [move semantics][move] by default, so if we want to make a copy of some
data, we call the `clone()` method. In this example, `y` is no longer a reference
to the vector stored in `x`, but a copy of its first element, `"hello"`. Now
to the vector stored in `x`, but a copy of its first element, `"Hello"`. Now
that we dont have a reference, our `push()` works just fine.
[move]: move-semantics.html