We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c79f2e + bf7d171 commit e852e60Copy full SHA for e852e60
exercises/23_conversions/from_str.rs
@@ -25,7 +25,7 @@ enum ParsePersonError {
25
ParseInt(ParseIntError),
26
}
27
28
-// TODO: Complete this `From` implementation to be able to parse a `Person`
+// TODO: Complete this `FromStr` implementation to be able to parse a `Person`
29
// out of a string in the form of "Mark,20".
30
// Note that you'll need to parse the age component into a `u8` with something
31
// like `"4".parse::<u8>()`.
0 commit comments