From 9e44bdb61c6722b9f7cb3817bae8688d9da98ed6 Mon Sep 17 00:00:00 2001 From: yash1120 <86657372+yash1120@users.noreply.github.com> Date: Tue, 25 Jan 2022 16:32:32 +0530 Subject: [PATCH] typo fix typo fix --- Booting/linux-bootstrap-3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Booting/linux-bootstrap-3.md b/Booting/linux-bootstrap-3.md index 653980c..dbbee1a 100644 --- a/Booting/linux-bootstrap-3.md +++ b/Booting/linux-bootstrap-3.md @@ -8,7 +8,7 @@ This is the third part of the `Kernel booting process` series. In the previous [ In this part, we will look at: -* video mode initialization in the kernel setup code, +* Video mode initialization in the kernel setup code, * the preparations made before switching into protected mode, * the transition to protected mode @@ -35,7 +35,7 @@ vga= here is either an integer (in C notation, either decimal, octal, or hexadecimal) or one of the strings "normal" (meaning 0xFFFF), "ext" (meaning 0xFFFE) or "ask" - (meaning 0xFFFD). This value should be entered into the + (meaning 0xFFFD). This value should be entered into the vid_mode field, as it is used by the kernel before the command line is parsed. ```