diff --git a/blog/content/second-edition/posts/06-double-faults/index.md b/blog/content/second-edition/posts/06-double-faults/index.md index 4a554810..97a6d5a3 100644 --- a/blog/content/second-edition/posts/06-double-faults/index.md +++ b/blog/content/second-edition/posts/06-double-faults/index.md @@ -97,7 +97,7 @@ When we start our kernel now, we should see that the double fault handler is inv It worked! Here is what happens this time: -1. The CPU executes tries to write to `0xdeadbeef`, which causes a page fault. +1. The CPU tries to write to `0xdeadbeef`, which causes a page fault. 2. Like before, the CPU looks at the corresponding entry in the IDT and sees that no handler function is defined. Thus, a double fault occurs. 3. The CPU jumps to the – now present – double fault handler.