diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index d38db06..66e0508 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -21,7 +21,7 @@ All posts will also be accessible at [github repo](https://github.com/0xAX/linux Anyway, if you are just starting to learn such tools, I will try to explain some parts during this and the following posts. Alright, this is the end of the simple introduction, and now we can start to dive into the Linux kernel and low-level stuff. -I've started to write this book at the time of the `3.18` Linux kernel, and many things might change from that time. If there are changes, I will update the posts accordingly. +I've started writing this book at the time of the `3.18` Linux kernel, and many things might have changed since that time. If there are changes, I will update the posts accordingly. The Magical Power Button, What happens next? -------------------------------------------------------------------------------- diff --git a/Misc/program_startup.md b/Misc/program_startup.md index 5f680db..fa21a32 100644 --- a/Misc/program_startup.md +++ b/Misc/program_startup.md @@ -150,7 +150,7 @@ In the previous paragraph we saw how an executable file is prepared to run by th $ gcc -Wall program.c -o sum ``` -You may guess that `_start` comes from the [stanard libray](https://en.wikipedia.org/wiki/Standard_library) and that's true. If you try to compile our program again and pass the `-v` option to gcc which will enable `verbose mode`, you will see a long output. The full output is not interesting for us, let's look at the following steps: +You may guess that `_start` comes from the [standard library](https://en.wikipedia.org/wiki/Standard_library) and that's true. If you try to compile our program again and pass the `-v` option to gcc which will enable `verbose mode`, you will see a long output. The full output is not interesting for us, let's look at the following steps: First of all, our program should be compiled with `gcc`: diff --git a/contributors.md b/contributors.md index dde8523..0bab64f 100644 --- a/contributors.md +++ b/contributors.md @@ -114,4 +114,5 @@ Thank you to all contributors: * [Firo Yang](https://github.com/firogh) * [Edward Hu](https://github.com/BDHU) * [WarpspeedSCP](https://github.com/WarpspeedSCP) -* [Gabriela Moldovan](https://github.com/gabi-250) \ No newline at end of file +* [Gabriela Moldovan](https://github.com/gabi-250) +* [kuritonasu](https://github.com/kuritonasu/)