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.