From 83ab97a7b1156d70291d61c190f28f80a4631742 Mon Sep 17 00:00:00 2001 From: Sebastian Fricke Date: Thu, 30 Apr 2020 17:22:10 +0200 Subject: [PATCH] linux-interrupts-2: Remove wrong 's' @ end of a word s/the `NULL` interrupts descriptor table/the `NULL` interrupt descriptor table/ Signed-off-by: Sebastian Fricke --- Interrupts/linux-interrupts-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interrupts/linux-interrupts-2.md b/Interrupts/linux-interrupts-2.md index 3dfc268..c659a73 100644 --- a/Interrupts/linux-interrupts-2.md +++ b/Interrupts/linux-interrupts-2.md @@ -17,7 +17,7 @@ void go_to_protected_mode(void) } ``` -The `setup_idt` function is defined in the same source code file as the `go_to_protected_mode` function and just loads the address of the `NULL` interrupts descriptor table: +The `setup_idt` function is defined in the same source code file as the `go_to_protected_mode` function and just loads the address of the `NULL` interrupt descriptor table: ```C static void setup_idt(void)