浏览代码

Fix small typo

calll -> call
Dongliang Mu 2 年之前
父节点
当前提交
dd515d0b96
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Booting/linux-bootstrap-1.md

+ 1 - 1
Booting/linux-bootstrap-1.md

@@ -553,7 +553,7 @@ Jump to main
 That's all! We have the stack and BSS, so we can jump to the `main()` C function:
 
 ```assembly
-    calll main
+    call main
 ```
 
 The `main()` function is located in [arch/x86/boot/main.c](https://github.com/torvalds/linux/blob/v4.16/arch/x86/boot/main.c). You can read about what this does in the next part.