Compare commits

..

1 commit

Author SHA1 Message Date
Kacper Poneta
445544f4ff
Merge 59e8f70e55 into 0c79f2ea3e 2024-09-27 17:17:42 +02:00

View file

@ -25,7 +25,7 @@ enum ParsePersonError {
ParseInt(ParseIntError),
}
// TODO: Complete this `FromStr` implementation to be able to parse a `Person`
// TODO: Complete this `From` implementation to be able to parse a `Person`
// out of a string in the form of "Mark,20".
// Note that you'll need to parse the age component into a `u8` with something
// like `"4".parse::<u8>()`.