summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeverImmy <506503360@qq.com>2024-02-04 10:51:06 +0800
committerLeverImmy <506503360@qq.com>2024-02-04 10:51:06 +0800
commitbcb192c707009ab9d9bb06812cb09b9d446ccc11 (patch)
tree9953815ec571a790b805ca2fbb6cf69b16fdea1b
parent8d0aa11a35f822d044e6be89dc42840e0aea8858 (diff)
chore: fixed minor typo
-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 60911f3..00f8c2f 100644
--- a/exercises/23_conversions/from_into.rs
+++ b/exercises/23_conversions/from_into.rs
@@ -25,7 +25,7 @@ impl Default for Person {
}
// Your task is to complete this implementation in order for the line `let p =
-// 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.
//