1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-23 16:56:12 +02:00

Merge pull request #1848 from LeverImmy/main

chore: fixed minor typo
This commit is contained in:
liv 2024-03-15 14:36:47 +01:00 committed by GitHub
commit ce5df2d84b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,8 +24,9 @@ impl Default for Person {
}
}
// Your task is to complete this implementation in order for the line `let p1 =
// Person::from("Mark,20")` to compile Please note that you'll need to parse the
// Person::from("Mark,20")` to compile. Please note that you'll need to parse the
// age component into a `usize` with something like `"4".parse::<usize>()`. The
// outcome of this needs to be handled appropriately.
//