Merge pull request #1997 from jphilis/main

chore: update error message to error message given by rustc (error[E0596]) in hint
This commit is contained in:
Mo 2024-06-21 17:11:48 +02:00 committed by GitHub
commit 42b5c0a1f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -318,7 +318,7 @@ name = "move_semantics1"
path = "exercises/06_move_semantics/move_semantics1.rs" path = "exercises/06_move_semantics/move_semantics1.rs"
mode = "test" mode = "test"
hint = """ hint = """
So you've got the "cannot borrow immutable local variable `vec` as mutable" So you've got the "cannot borrow `vec` as mutable, as it is not declared as mutable"
error on the line where we push an element to the vector, right? error on the line where we push an element to the vector, right?
The fix for this is going to be adding one keyword, and the addition is NOT on The fix for this is going to be adding one keyword, and the addition is NOT on