Merge 5c52ba372b9f8152be90a247aeda94327eac1b8e into 7c10d8315b8f7de3267f157bd4392d50ec41a99f

This commit is contained in:
mjduijn 2018-03-04 17:03:52 +00:00 committed by GitHub
commit e103492e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,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 10,
// right? The fix for this is going to be adding one keyword, and the addition is NOT on line 10
// So you've got the "cannot borrow immutable local variable `vec1` as mutable" error on line 11,
// right? The fix for this is going to be adding one keyword, and the addition is NOT on line 11
// where the error is.