summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTal <3195851+tal-zvon@users.noreply.github.com>2021-02-07 04:22:13 -0700
committerGitHub <noreply@github.com>2021-02-07 12:22:13 +0100
commitcc266d7d80b91e79df3f61984f231b7f1587218e (patch)
tree21f2ec28ad198d07c79f83214d049053a0dc844b
parentfff72afe2e88e0da74367f9c2c4690f06f2d04b8 (diff)
fix(move_semantics4): Remove redundant "instead" (#640)
-rw-r--r--exercises/move_semantics/move_semantics4.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/move_semantics/move_semantics4.rs b/exercises/move_semantics/move_semantics4.rs
index 6308c29..2a23c71 100644
--- a/exercises/move_semantics/move_semantics4.rs
+++ b/exercises/move_semantics/move_semantics4.rs
@@ -1,6 +1,6 @@
// move_semantics4.rs
// Refactor this code so that instead of having `vec0` and creating the vector
-// in `fn main`, we instead create it within `fn fill_vec` and transfer the
+// in `fn main`, we create it within `fn fill_vec` and transfer the
// freshly created vector from fill_vec to its caller.
// Execute `rustlings hint move_semantics4` for hints!