Fixed two typos in hinttext

This commit is contained in:
maarten
2018-03-04 18:14:30 +01:00
parent 7c10d8315b
commit 1d27151af8
2 changed files with 4 additions and 4 deletions

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.