diff --git a/exercises/23_conversions/from_into.rs b/exercises/23_conversions/from_into.rs index 617ec08..11787c3 100644 --- a/exercises/23_conversions/from_into.rs +++ b/exercises/23_conversions/from_into.rs @@ -24,8 +24,9 @@ impl Default for Person { } } + // 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 +// 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::()`. The // outcome of this needs to be handled appropriately. //