diff options
| author | liv <mokou@fastmail.com> | 2024-03-15 13:52:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-15 13:52:38 +0100 |
| commit | 32c19c2e470deb7cbd785df7c93eb1c473d50935 (patch) | |
| tree | ef311197d6ec0fcbd7ad24fac966a7e71a192ac6 /exercises | |
| parent | 27d1a31eb6aad887a5c2a48db4a1a1fb981c0f6f (diff) | |
| parent | b70ed105db29fb908f97b117b56ed3732837df08 (diff) | |
Merge pull request #1832 from reifenrath-dev/main
chore: update from_into.rs task description to fit the code
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/23_conversions/from_into.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/23_conversions/from_into.rs b/exercises/23_conversions/from_into.rs index da1a9a5..617ec08 100644 --- a/exercises/23_conversions/from_into.rs +++ b/exercises/23_conversions/from_into.rs @@ -24,7 +24,7 @@ impl Default for Person { } } -// Your task is to complete this implementation in order for the line `let p = +// Your task is to complete this implementation in order for the line `let p1 = // Person::from("Mark,20")` to compile Please note that you'll need to parse the // age component into a `usize` with something like `"4".parse::<usize>()`. The // outcome of this needs to be handled appropriately. |
