From b452af006a05019c593a7416f69419af6ab9e4a2 Mon Sep 17 00:00:00 2001 From: Sanjay K <sanjaykdragon@users.noreply.github.com> Date: Tue, 7 Apr 2020 13:48:07 -0400 Subject: [PATCH] Update exercises/option/option2.rs Co-Authored-By: fmoko <mokou@posteo.net> --- exercises/option/option2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/option/option2.rs b/exercises/option/option2.rs index 77922a3..623bf20 100644 --- a/exercises/option/option2.rs +++ b/exercises/option/option2.rs @@ -5,7 +5,7 @@ fn main() { let optional_value = Some(String::from("rustlings")); - //make this an if let statement - value is "Some" type + // Make this an if let statement whose value is "Some" type value = optional_value { println!("the value of optional value is: {}", value); } else {