rust-lang / rustlings

:crab: Small exercises to get you used to reading and writing Rust code!
https://rustlings.cool
MIT License
54.01k stars 10.15k forks source link

Typo in `23_conversions/from_str.rs` #2123

Closed closer76 closed 1 month ago

closer76 commented 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.

mo8it commented 1 month ago

Done in https://github.com/rust-lang/rustlings/pull/2124. Thanks :D