diff options
| author | reifenrath-dev <rene@reifenrath.dev> | 2024-01-19 11:18:54 +0100 |
|---|---|---|
| committer | reifenrath-dev <rene@reifenrath.dev> | 2024-01-19 11:18:54 +0100 |
| commit | b70ed105db29fb908f97b117b56ed3732837df08 (patch) | |
| tree | 6482171b19deacf97d1abcd21446e817e8cea519 | |
| parent | 8d0aa11a35f822d044e6be89dc42840e0aea8858 (diff) | |
chore: update from_into.rs task description to fit the code
| -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 60911f3..d78b7b5 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. |
