We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 77fee7d + fbd3261 commit 05ee6f0Copy full SHA for 05ee6f0
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