diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-04-20 21:15:53 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-04-20 21:15:53 -0400 |
| commit | 05ee6f07099416d657f485b6a69fd2fced8df1a9 (patch) | |
| tree | cf1c71340039da131f1fcc58728d5abee9bab485 /src/doc | |
| parent | 77fee7db49ea9795da53c2196bc725242888b876 (diff) | |
| parent | fbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74 (diff) | |
| download | rust-05ee6f07099416d657f485b6a69fd2fced8df1a9.tar.gz rust-05ee6f07099416d657f485b6a69fd2fced8df1a9.zip | |
Rollup merge of #24630 - steveklabnik:quickfix, r=alexcrichton
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/trpl/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/README.md b/src/doc/trpl/README.md index 8d3a6ec3986..dfe837285c8 100644 --- a/src/doc/trpl/README.md +++ b/src/doc/trpl/README.md @@ -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 don’t have a reference, our `push()` works just fine. [move]: move-semantics.html |
