From 5ee44e202e61587085281ec9e1dea46b9f11bd5b Mon Sep 17 00:00:00 2001 From: elian1780 <50403559+elian1780@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:09:38 +0100 Subject: [PATCH] grammatical fix on move_semantics2.rs --- exercises/06_move_semantics/move_semantics2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/06_move_semantics/move_semantics2.rs b/exercises/06_move_semantics/move_semantics2.rs index a3ab7a0f18..27f11e29e8 100644 --- a/exercises/06_move_semantics/move_semantics2.rs +++ b/exercises/06_move_semantics/move_semantics2.rs @@ -14,7 +14,7 @@ fn main() { mod tests { use super::*; - // TODO: Make both vectors `vec0` and `vec1` accessible at the same time to + // TODO: Make both vectors `vec0` and `vec1` are accessible at the same time to // fix the compiler error in the test. #[test] fn move_semantics2() {