summaryrefslogtreecommitdiff
path: root/exercises/23_conversions/from_into.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/23_conversions/from_into.rs')
-rw-r--r--exercises/23_conversions/from_into.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/23_conversions/from_into.rs b/exercises/23_conversions/from_into.rs
index 11787c3..10836a6 100644
--- a/exercises/23_conversions/from_into.rs
+++ b/exercises/23_conversions/from_into.rs
@@ -39,7 +39,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
// I AM NOT DONE