Skip to content

Commit

Permalink
Merge pull request rust-lang#2124 from Polycarbohydrate/main
Browse files Browse the repository at this point in the history
fix: typo in `exercises/23_conversions/from_str.rs`
  • Loading branch information
mo8it authored Oct 5, 2024
2 parents 0c79f2e + bf7d171 commit e852e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/23_conversions/from_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum ParsePersonError {
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".
// Note that you'll need to parse the age component into a `u8` with something
// like `"4".parse::<u8>()`.
Expand Down

0 comments on commit e852e60

Please sign in to comment.