diff --git a/exercises/error_handling/errors1.rs b/exercises/error_handling/errors1.rs index b0a8364a8..781165362 100644 --- a/exercises/error_handling/errors1.rs +++ b/exercises/error_handling/errors1.rs @@ -9,7 +9,7 @@ // Execute `rustlings hint errors1` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE + pub fn generate_nametag_text(name: String) -> Result { if name.is_empty() { diff --git a/exercises/error_handling/errors2.rs b/exercises/error_handling/errors2.rs index c0f036cfe..85738d72a 100644 --- a/exercises/error_handling/errors2.rs +++ b/exercises/error_handling/errors2.rs @@ -19,7 +19,7 @@ // Execute `rustlings hint errors2` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE + use std::num::ParseIntError; diff --git a/exercises/error_handling/errors3.rs b/exercises/error_handling/errors3.rs index 29bc0ec9c..51d84c317 100644 --- a/exercises/error_handling/errors3.rs +++ b/exercises/error_handling/errors3.rs @@ -7,7 +7,7 @@ // Execute `rustlings hint errors3` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE + use std::num::ParseIntError;