diff options
| author | mo8it <mo8it@proton.me> | 2024-06-27 11:30:42 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-27 11:30:42 +0200 |
| commit | 92f249a52ca993d65db6ed70b85535c2f1720ec3 (patch) | |
| tree | fa3d6174d0d54679fa8218efeb9dda079c831c28 /exercises/23_conversions/from_into.rs | |
| parent | 789223cc9e247eb9da90698b1c3011c26cdc863c (diff) | |
| parent | e6228e92b4df766bddb8524ed42d66690348f100 (diff) | |
Merge branch 'main'
Diffstat (limited to 'exercises/23_conversions/from_into.rs')
| -rw-r--r-- | exercises/23_conversions/from_into.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/23_conversions/from_into.rs b/exercises/23_conversions/from_into.rs index 9df10da..14a62ba 100644 --- a/exercises/23_conversions/from_into.rs +++ b/exercises/23_conversions/from_into.rs @@ -33,7 +33,7 @@ impl Default for Person { // 5. Extract the other element from the split operation and parse it into a // `usize` as the age. // If while parsing the age, something goes wrong, then return the default of -// Person Otherwise, then return an instantiated Person object with the results +// Person. Otherwise, then return an instantiated Person object with the results impl From<&str> for Person { fn from(s: &str) -> Person {} |
