From 03a327ad227b1bb48f962f58c96d23fb0877cef7 Mon Sep 17 00:00:00 2001 From: ruthgrace Date: Sat, 31 Oct 2015 03:12:04 -0400 Subject: [PATCH] fixed grammar in linux-bootstrap-1.md, Jump to main section --- Booting/linux-bootstrap-1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index e0b3a34..8555a4a 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -465,13 +465,13 @@ First of all the [__bss_start](https://github.com/torvalds/linux/blob/master/arc Jump to main -------------------------------------------------------------------------------- -That's all, we have the stack, BSS so we can jump to the `main()` C function: +That's all, we have the stack and BSS so we can jump to the `main()` C function: ```assembly calll main ``` -The `main()` function is located in [arch/x86/boot/main.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/main.c). What this does, you can read in the next part. +The `main()` function is located in [arch/x86/boot/main.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/main.c). You can read about what this does in the next part. Conclusion --------------------------------------------------------------------------------