From 8b7860270077e06a6d0bfb79c807c3650ffea2b2 Mon Sep 17 00:00:00 2001 From: NizTheDev Date: Thu, 3 Nov 2022 21:13:41 +0500 Subject: [PATCH] fix: Fixed instructions for options3.rs --- exercises/options/options1.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/options/options1.rs b/exercises/options/options1.rs index 1149af08..0db9199b 100644 --- a/exercises/options/options1.rs +++ b/exercises/options/options1.rs @@ -4,8 +4,8 @@ // I AM NOT DONE // This function returns how much icecream there is left in the fridge. -// If it's before 10PM, there's 5 pieces left. At 10PM, someone eats them -// all, so there'll be no more left :( +// If it's before 10PM, there's 5 pieces left. Once the clock hits 10PM, someone eats them +// all, so there'll be no more left from there onwards:( // TODO: Return an Option! fn maybe_icecream(time_of_day: u16) -> Option { // We use the 24-hour system here, so 10PM is a value of 22 and 12AM is a value of 0