Skip to content

Commit bf7d171

Browse files
author
Polycarbohydrate
authored
Update from_str.rs
1 parent 0c79f2e commit bf7d171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/23_conversions/from_str.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ enum ParsePersonError {
2525
ParseInt(ParseIntError),
2626
}
2727

28-
// TODO: Complete this `From` implementation to be able to parse a `Person`
28+
// TODO: Complete this `FromStr` implementation to be able to parse a `Person`
2929
// out of a string in the form of "Mark,20".
3030
// Note that you'll need to parse the age component into a `u8` with something
3131
// like `"4".parse::<u8>()`.

0 commit comments

Comments
 (0)