From 524cb98904b16dcf30c0f643a1f7ef3c84005968 Mon Sep 17 00:00:00 2001 From: doddman53 Date: Tue, 13 Jun 2017 21:31:22 -0700 Subject: [PATCH] Switched comma to semi-colon --- Chapter-4/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter-4/README.md b/Chapter-4/README.md index 9e082c2..07b6b9b 100644 --- a/Chapter-4/README.md +++ b/Chapter-4/README.md @@ -46,7 +46,7 @@ typedef signed long long s64; #### Compile our kernel -Compiling a kernel is not the same thing as compiling a linux executable, we can't use a standard library and should have no dependencies to the system. +Compiling a kernel is not the same thing as compiling a linux executable; we can't use a standard library and should have no dependencies to the system. Our [Makefile](https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System/blob/master/src/kernel/Makefile) will define the process to compile and link our kernel.