diff --git a/exercises/error_handling/errors6.rs b/exercises/error_handling/errors6.rs index 53cbf933..76451625 100644 --- a/exercises/error_handling/errors6.rs +++ b/exercises/error_handling/errors6.rs @@ -23,7 +23,7 @@ impl ParsePosNonzeroError { fn from_creation(err: CreationError) -> ParsePosNonzeroError { ParsePosNonzeroError::Creation(err) } - // TODO: add another error conversion function here. + // TODO: add another error conversion function here. } fn parse_pos_nonzero(s: &str) -> Result {