From 5c52ba372b9f8152be90a247aeda94327eac1b8e Mon Sep 17 00:00:00 2001 From: mjduijn Date: Sun, 4 Mar 2018 18:01:35 +0100 Subject: [PATCH] Fix typo in hint text --- move_semantics/move_semantics1.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/move_semantics/move_semantics1.rs b/move_semantics/move_semantics1.rs index 1f288731..73dc0ab1 100644 --- a/move_semantics/move_semantics1.rs +++ b/move_semantics/move_semantics1.rs @@ -38,6 +38,6 @@ fn fill_vec(vec: Vec) -> Vec { -// 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.