We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5910dc0 commit fbd3261Copy full SHA for fbd3261
src/doc/trpl/README.md
@@ -165,7 +165,7 @@ fn main() {
165
166
Rust has [move semantics][move] by default, so if we want to make a copy of some
167
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
+to the vector stored in `x`, but a copy of its first element, `"Hello"`. Now
169
that we don’t have a reference, our `push()` works just fine.
170
171
[move]: move-semantics.html
0 commit comments