diff --git a/20-interrupts-timer/drivers/keyboard.c b/20-interrupts-timer/drivers/keyboard.c index 8d1dec8..895551f 100644 --- a/20-interrupts-timer/drivers/keyboard.c +++ b/20-interrupts-timer/drivers/keyboard.c @@ -196,7 +196,7 @@ void print_letter(u8 scancode) { kprint("Spc"); break; default: - /* 'keuyp' event corresponds to the 'keydown' + 0x80 + /* 'keyup' event corresponds to the 'keydown' + 0x80 * it may still be a scancode we haven't implemented yet, or * maybe a control/escape sequence */ if (scancode <= 0x7f) {