diff --git a/exercises/error_handling/errors1.rs b/exercises/error_handling/errors1.rs index 14ed574b..84832349 100644 --- a/exercises/error_handling/errors1.rs +++ b/exercises/error_handling/errors1.rs @@ -63,7 +63,7 @@ mod tests { // `Option`. // To make this change, you'll need to: -// - update the return type in the function signature to be a Result that +// - update the return type in the function signature to be a Result that // could be the variants `Ok(String)` and `Err(String)` // - change the body of the function to return `Ok(stuff)` where it currently // returns `Some(stuff)`