瀏覽代碼

Merge pull request #293 from ruthgrace/bootstrap_1_jump_to_main

fixed grammar in linux-bootstrap-1.md, Jump to main section
0xAX 9 年之前
父節點
當前提交
0de6568131
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Booting/linux-bootstrap-1.md

+ 2 - 2
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
 --------------------------------------------------------------------------------