diff options
| author | Matt Nield <64328730+matthewjnield@users.noreply.github.com> | 2024-08-04 02:36:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-04 02:36:45 -0400 |
| commit | 2128be8b2855f2640137491cb1ed0c9d89721603 (patch) | |
| tree | d525efdbf087846106f9c8245d4fadb935662514 /exercises/13_error_handling/errors6.rs | |
| parent | 175294fa5dda30ed313050a4837631575dc8a232 (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 'exercises/13_error_handling/errors6.rs')
| -rw-r--r-- | exercises/13_error_handling/errors6.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/13_error_handling/errors6.rs b/exercises/13_error_handling/errors6.rs index b656c61..b1995e0 100644 --- a/exercises/13_error_handling/errors6.rs +++ b/exercises/13_error_handling/errors6.rs @@ -25,7 +25,7 @@ impl ParsePosNonzeroError { } // TODO: Add another error conversion function here. - // fn from_parseint(???) -> Self { ??? } + // fn from_parse_int(???) -> Self { ??? } } #[derive(PartialEq, Debug)] |
