1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-23 16:56:12 +02:00

Merge pull request #1385 from alexwh/patch-1

chore: update move_semantics4.rs' hint
This commit is contained in:
liv 2023-04-05 13:09:20 +00:00 committed by GitHub
commit f86fa1e909
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -325,8 +325,7 @@ doing one step and then fixing the compiler errors that result!
So the end goal is to:
- get rid of the first line in main that creates the new vector
- so then `vec0` doesn't exist, so we can't pass it to `fill_vec`
- we don't want to pass anything to `fill_vec`, so its signature should
reflect that it does not take any arguments
- `fill_vec` has had its signature changed, which our call should reflect
- since we're not creating a new vec in `main` anymore, we need to create
a new vec in `fill_vec`, similarly to the way we did in `main`"""