summaryrefslogtreecommitdiff
path: root/solutions
diff options
context:
space:
mode:
authorMatt Nield <64328730+matthewjnield@users.noreply.github.com>2024-08-04 02:36:45 -0400
committerGitHub <noreply@github.com>2024-08-04 02:36:45 -0400
commit2128be8b2855f2640137491cb1ed0c9d89721603 (patch)
treed525efdbf087846106f9c8245d4fadb935662514 /solutions
parent175294fa5dda30ed313050a4837631575dc8a232 (diff)
chore: Fix snakecase convention in errors6.rs
Exercise errors6.rs prompts the user to add a method named `from_parseint`. This commit changes the method name to the corrected snakecase format, `from_parse_int`.
Diffstat (limited to 'solutions')
-rw-r--r--solutions/13_error_handling/errors6.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/solutions/13_error_handling/errors6.rs b/solutions/13_error_handling/errors6.rs
index 429d3ea..8679361 100644
--- a/solutions/13_error_handling/errors6.rs
+++ b/solutions/13_error_handling/errors6.rs
@@ -24,7 +24,7 @@ impl ParsePosNonzeroError {
Self::Creation(err)
}
- fn from_parseint(err: ParseIntError) -> Self {
+ fn from_parse_int(err: ParseIntError) -> Self {
Self::ParseInt(err)
}
}
@@ -44,7 +44,7 @@ impl PositiveNonzeroInteger {
fn parse(s: &str) -> Result<Self, ParsePosNonzeroError> {
// Return an appropriate error instead of panicking when `parse()`
// returns an error.
- let x: i64 = s.parse().map_err(ParsePosNonzeroError::from_parseint)?;
+ let x: i64 = s.parse().map_err(ParsePosNonzeroError::from_parse_int)?;
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Self::new(x).map_err(ParsePosNonzeroError::from_creation)
}