diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-04-20 10:42:17 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-04-20 10:42:17 -0400 |
| commit | fbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74 (patch) | |
| tree | 3cba523cb073e8f2a3f9a89277d90c9b8e45e438 /src | |
| parent | 5910dc0e8e396a4af7b948b83bab03f27b414a0e (diff) | |
| download | rust-fbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74.tar.gz rust-fbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74.zip | |
Fix small typo in TRPL intro
Diffstat (limited to 'src')
| -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 |
