docs(options1): fix and clarify 24 hour time instruction

This commit is contained in:
bhbuehler 2022-10-11 12:05:37 -05:00
parent 818eaa7307
commit c157c53983
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@
// all, so there'll be no more left :(
// TODO: Return an Option!
fn maybe_icecream(time_of_day: u16) -> Option<u16> {
// We use the 24-hour system here, so 10PM is a value of 22
// The Option output should gracefully handle cases where time_of_day > 24.
// We use the 24-hour system here, so 10PM is a value of 22 and 12AM is a value of 0
// The Option output should gracefully handle cases where time_of_day > 23.
???
}