summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2024-03-15 14:36:47 +0100
committerGitHub <noreply@github.com>2024-03-15 14:36:47 +0100
commitce5df2d84b311c3745893f7839a30f6ed8ae710e (patch)
tree534cbad29caa892d4026ec593491d05cde541e15
parent2966a29449e17eace182c225b3af23fa43af3799 (diff)
parent76acf613c5481bf7bb44d290b7fb340e71e9faad (diff)
Merge pull request #1848 from LeverImmy/main
chore: fixed minor typo
-rw-r--r--exercises/23_conversions/from_into.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/23_conversions/from_into.rs b/exercises/23_conversions/from_into.rs
index 617ec08..11787c3 100644
--- a/exercises/23_conversions/from_into.rs
+++ b/exercises/23_conversions/from_into.rs
@@ -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.
//