From 557105f5538691f36096b5c109ebefcdf5a20937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Mart=C3=ADn?= Date: Sat, 16 Oct 2021 09:38:05 +0200 Subject: [PATCH] test --- exercises/error_handling/errors6.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {