From 8c7261262e104750c4b7dc2b660e1fa438e7eb7e Mon Sep 17 00:00:00 2001 From: ruthgrace Date: Sat, 17 Oct 2015 20:22:20 -0400 Subject: [PATCH] fixed grammar in linux-bootstrap-3.md, Kernel data types section --- 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 06497c5..c617f9a 100644 --- a/Booting/linux-bootstrap-3.md +++ b/Booting/linux-bootstrap-3.md @@ -46,14 +46,14 @@ which will ask to select a video mode. We will look at its implementation, but b Kernel data types -------------------------------------------------------------------------------- -Earlier we saw definitions of different data types like `u16` etc. in the kernel setup code. Let's look on a couple of data types provided by the kernel: +Earlier we saw definitions of different data types like `u16` etc. in the kernel setup code. Let's look at a couple of data types provided by the kernel: | Type | char | short | int | long | u8 | u16 | u32 | u64 | |------|------|-------|-----|------|----|-----|-----|-----| | Size | 1 | 2 | 4 | 8 | 1 | 2 | 4 | 8 | -If you read source code of the kernel, you'll see these very often and so it will be good to remember them. +If you the read source code of the kernel, you'll see these very often and so it will be good to remember them. Heap API --------------------------------------------------------------------------------