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:
parent
dbad16021c
commit
b345aa9cbf
|
@ -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,
|
// 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 8
|
// right? The fix for this is going to be adding one keyword, and the addition is NOT on line 10
|
||||||
// where the error is.
|
// where the error is.
|
||||||
|
|
Loading…
Reference in New Issue