From 921be703d2731d459eb70dce6bcbb70175941d7f Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Mon, 6 Jul 2015 20:39:57 +0500 Subject: [PATCH] fix wrong capital --- Booting/linux-bootstrap-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-2.md b/Booting/linux-bootstrap-2.md index e32671c..fd08112 100644 --- a/Booting/linux-bootstrap-2.md +++ b/Booting/linux-bootstrap-2.md @@ -237,7 +237,7 @@ if (cmdline_find_option_bool("debug")) puts("early console in setup code\n"); ``` -The definition of `puts` is in [tty.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/tty.c). As we can see it prints character by character in a loop by calling The `putchar` function. Let's look into the `putchar` implementation: +The definition of `puts` is in [tty.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/tty.c). As we can see it prints character by character in a loop by calling the `putchar` function. Let's look into the `putchar` implementation: ```C void __attribute__((section(".inittext"))) putchar(int ch)