diff options
| -rw-r--r-- | exercises/error_handling/errors1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/error_handling/errors1.rs b/exercises/error_handling/errors1.rs index 14ed574..8483234 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<String, String> 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)` |
