From 8795c9a1e9008c8419cb4353818a0e833e00730d Mon Sep 17 00:00:00 2001 From: AAYUSH PRASAD Date: Mon, 13 Apr 2026 17:18:16 +0530 Subject: [PATCH] Correct typo in periodic timer interrupt description Fix typo in the p4-traps.md file regarding the interrupt handler message. --- p4-traps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p4-traps.md b/p4-traps.md index 9d906b0..4a08f4b 100644 --- a/p4-traps.md +++ b/p4-traps.md @@ -2,7 +2,7 @@ Now that our APICs are initialized and set up, we can start handling interrupts. In this part, we handle the periodic timer interrupts that we had set in -`lapic.c`. The interrupt handler in `trap.c` prints a message everytime the +`lapic.c`. The interrupt handler in `trap.c` prints a message every time the timer ticks. In `main.c`, we call `sti` to enable interrupt handling on CPU. However before