Skip to content

Commit 05ee6f0

Browse files
committed
Rollup merge of #24630 - steveklabnik:quickfix, r=alexcrichton
2 parents 77fee7d + fbd3261 commit 05ee6f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ fn main() {
165165

166166
Rust has [move semantics][move] by default, so if we want to make a copy of some
167167
data, we call the `clone()` method. In this example, `y` is no longer a reference
168-
to the vector stored in `x`, but a copy of its first element, `"hello"`. Now
168+
to the vector stored in `x`, but a copy of its first element, `"Hello"`. Now
169169
that we don’t have a reference, our `push()` works just fine.
170170

171171
[move]: move-semantics.html

0 commit comments

Comments
 (0)