Skip to content

Commit 5aa23cd

Browse files
authored
Fix typo on line 22 of Interrupt Handling section (#124)
1 parent 890086e commit 5aa23cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_Architecture/05_InterruptHandling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There will be situations where we don't want to be interrupted, usually in some
1919

2020
When the interrupt flag is cleared, most interrupts will be *masked*, meaning they will not be served. There is a special case where an interrupt will still be served by the cpu: the *non-maskable interrupt* or NMI. These are extremely rare, and often a result of a critical hardware failure, therefore it's perfectly acceptable to simply have the operating system panic in this case.
2121

22-
*Authors note: Don't let NMIs scare you, we've never run actually run into one on real hardware. You do need to be aware that they exist and can happen at any time, regardless of the interrupt flag.*
22+
*Authors note: Don't let NMIs scare you, we've never actually run into one on real hardware. You do need to be aware that they exist and can happen at any time, regardless of the interrupt flag.*
2323

2424
## Setting Up For Handling Interrupts
2525

0 commit comments

Comments
 (0)