From fdada8b3d4f8a0d90804cae3e421875be76a109e Mon Sep 17 00:00:00 2001 From: Matt Nield <64328730+matthewjnield@users.noreply.github.com> Date: Fri, 5 Jul 2024 16:04:07 -0400 Subject: [PATCH] chore: Update errors5.rs exercise to be consistent with solution In errors5.rs, there are two lines of a pattern matching block for which the order is reversed between the exercise file and the solution file. Since these lines are not changed as part of the exercise, this commit updates the exercise to make the order of the lines consistent with the solution, so that users will focus only on the lines that change between the exercise and the solution. --- exercises/13_error_handling/errors5.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/13_error_handling/errors5.rs b/exercises/13_error_handling/errors5.rs index d0044db2..57218351 100644 --- a/exercises/13_error_handling/errors5.rs +++ b/exercises/13_error_handling/errors5.rs @@ -39,8 +39,8 @@ struct PositiveNonzeroInteger(u64); impl PositiveNonzeroInteger { fn new(value: i64) -> Result { match value { - 0 => Err(CreationError::Zero), x if x < 0 => Err(CreationError::Negative), + 0 => Err(CreationError::Zero), x => Ok(PositiveNonzeroInteger(x as u64)), } }