Preserve conversions3 wording

This commit is contained in:
sijun-yang 2026-08-09 15:35:18 +09:00
parent dcc724888f
commit 11ce37fc93
2 changed files with 6 additions and 6 deletions

View File

@ -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;

View File

@ -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;