Compare commits

...

2 commits

Author SHA1 Message Date
Mo e852e60416
Merge pull request #2124 from Polycarbohydrate/main
fix: typo in `exercises/23_conversions/from_str.rs`
2024-10-06 01:50:18 +02:00
Polycarbohydrate bf7d171915
Update from_str.rs 2024-10-05 16:05:35 -04:00

View file

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