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:
commit
6e42eede54
|
@ -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.
|
||||
???
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue