about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-04-20 10:42:17 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-04-20 10:42:17 -0400
commitfbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74 (patch)
tree3cba523cb073e8f2a3f9a89277d90c9b8e45e438 /src
parent5910dc0e8e396a4af7b948b83bab03f27b414a0e (diff)
downloadrust-fbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74.tar.gz
rust-fbd3261e376ca9bbaf9cb5e50ad9fa71901aeb74.zip
Fix small typo in TRPL intro
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/README.md2
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