Closed closer76 closed 1 month ago
Line 28 of this file:
// TODO: Complete this `From` implementation to be able to parse a `Person`
...should be:
// TODO: Complete this `FromStr` implementation to be able to parse a `Person`
...since this excercise is about FromStr, not From.
FromStr
From
Done in https://github.com/rust-lang/rustlings/pull/2124. Thanks :D
Line 28 of this file:
...should be:
...since this excercise is about
FromStr
, notFrom
.