-
-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
In ducker-master/src/events/key.rs, the comment indicates that function will panic when n == 0, but it wouldn't. It looks like comment is wrong and should be modified.
/// # Panics
///
/// If `n == 0 || n > 12`
pub fn from_f(n: u8) -> Key {
match n {
0 => Key::F0,
1 => Key::F1,
2 => Key::F2,
3 => Key::F3,
4 => Key::F4,
5 => Key::F5,
6 => Key::F6,
7 => Key::F7,
8 => Key::F8,
9 => Key::F9,
10 => Key::F10,
11 => Key::F11,
12 => Key::F12,
_ => panic!("unknown function key: F{}", n),
}
}Metadata
Metadata
Assignees
Labels
No labels