summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-04-05 13:09:20 +0000
committerGitHub <noreply@github.com>2023-04-05 13:09:20 +0000
commitf86fa1e909eb1a4f294502cb845145ca1398f1a0 (patch)
tree467895255f23154d26be7fd2f28ea982d5f63b3d /info.toml
parent2285b89aea35545a1040aa8d7700fd137a91b891 (diff)
parent89069f78b165e2e10d0b0a72c8d6b246bb9e9c94 (diff)
Merge pull request #1385 from alexwh/patch-1
chore: update move_semantics4.rs' hint
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/info.toml b/info.toml
index fe79bde..28f9bb3 100644
--- a/info.toml
+++ b/info.toml
@@ -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`"""