diff options
| author | Mo <76752051+mo8it@users.noreply.github.com> | 2024-10-06 01:50:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-06 01:50:18 +0200 |
| commit | e852e60416704e032dc2a56a5a30b8beb0a3cc8e (patch) | |
| tree | 8573e2812480451f3db4ed91b95ac2ccfdc1813a /exercises/23_conversions | |
| parent | 0c79f2ea3e1fd2db54ebe8fba8ed17369a15b365 (diff) | |
| parent | bf7d171915d2a720f10ccacb305993b917798419 (diff) | |
Merge pull request #2124 from Polycarbohydrate/main
fix: typo in `exercises/23_conversions/from_str.rs`
Diffstat (limited to 'exercises/23_conversions')
| -rw-r--r-- | exercises/23_conversions/from_str.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/23_conversions/from_str.rs b/exercises/23_conversions/from_str.rs index 4b1aaa2..ec6d3fd 100644 --- a/exercises/23_conversions/from_str.rs +++ b/exercises/23_conversions/from_str.rs @@ -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>()`. |
