Merge pull request #1229 from bhbuehler/docs-options1-fix_and_clarify_24_hr_time_instruction

docs(options1): fix and clarify 24 hour time instruction
This commit is contained in:
liv 2022-10-12 15:51:06 +01:00 committed by GitHub
commit 6e42eede54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.
???
}