Fix typo in hint for move_semantics1.rs.

When I compile the unedited example in the playground, I get the
error on line 10, not line 8. That's the case for stable, beta,
and nightly.
This commit is contained in:
Todd Thomas 2015-11-16 17:52:41 -07:00
parent dbad16021c
commit b345aa9cbf
1 changed files with 2 additions and 2 deletions

View File

@ -37,6 +37,6 @@ fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
// So you've got the "cannot borrow immutable local variable `vec1` as mutable" error on line 8,
// right? The fix for this is going to be adding one keyword, and the addition is NOT on line 8
// So you've got the "cannot borrow immutable local variable `vec1` as mutable" error on line 10,
// right? The fix for this is going to be adding one keyword, and the addition is NOT on line 10
// where the error is.