From 11ce37fc937429363bd8cc410a6bd19d2e90b5b9 Mon Sep 17 00:00:00 2001 From: sijun-yang Date: Sun, 9 Aug 2026 15:35:18 +0900 Subject: [PATCH] Preserve conversions3 wording --- exercises/23_conversions/conversions3.rs | 6 +++--- solutions/23_conversions/conversions3.rs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/exercises/23_conversions/conversions3.rs b/exercises/23_conversions/conversions3.rs index 7ab48c54..71bae845 100644 --- a/exercises/23_conversions/conversions3.rs +++ b/exercises/23_conversions/conversions3.rs @@ -1,7 +1,7 @@ // In this exercise, we'll implement `FromStr` and return errors instead of -// falling back to a default value. Upon implementing `FromStr`, you can use the -// `parse` method on strings to generate an object of the implementor type. -// You can read more about it in the documentation: +// falling back to a default value. Additionally, upon implementing `FromStr`, +// you can use the `parse` method on strings to generate an object of the +// implementor type. You can read more about it in the documentation: // https://doc.rust-lang.org/std/str/trait.FromStr.html use std::num::ParseIntError; diff --git a/solutions/23_conversions/conversions3.rs b/solutions/23_conversions/conversions3.rs index 0da8f029..64e23a02 100644 --- a/solutions/23_conversions/conversions3.rs +++ b/solutions/23_conversions/conversions3.rs @@ -1,7 +1,7 @@ // In this exercise, we'll implement `FromStr` and return errors instead of -// falling back to a default value. Upon implementing `FromStr`, you can use the -// `parse` method on strings to generate an object of the implementor type. -// You can read more about it in the documentation: +// falling back to a default value. Additionally, upon implementing `FromStr`, +// you can use the `parse` method on strings to generate an object of the +// implementor type. You can read more about it in the documentation: // https://doc.rust-lang.org/std/str/trait.FromStr.html use std::num::ParseIntError;