diff --git a/exercises/option/option2.rs b/exercises/option/option2.rs
index a1517d7..c6b83ec 100644
--- a/exercises/option/option2.rs
+++ b/exercises/option/option2.rs
@@ -4,22 +4,22 @@
// I AM NOT DONE
fn main() {
- let optional_value = Some(String::from("rustlings"));
+ let optional_word = Some(String::from("rustlings"));
// TODO: Make this an if let statement whose value is "Some" type
- value = optional_value {
- println!("the value of optional value is: {}", value);
+ word = optional_word {
+ println!("The word is: {}", word);
} else {
- println!("The optional value doesn't contain anything!");
+ println!("The optional word doesn't contain anything");
}
- let mut optional_values_vec: Vec