Update move_semantics4.rs

Removed redundant use of "instead"
This commit is contained in:
Tal 2021-02-06 15:00:50 -07:00 committed by GitHub
parent fff72afe2e
commit 495f2d2996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!