From 86e544849c577ca3dede2482cf79e934b7f85ffa Mon Sep 17 00:00:00 2001 From: Semen Zhydenko Date: Tue, 25 Sep 2018 14:26:55 +0200 Subject: [PATCH 1/2] apparantly -> apparently --- 21-shell/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21-shell/README.md b/21-shell/README.md index 34aca08..232ecbd 100644 --- a/21-shell/README.md +++ b/21-shell/README.md @@ -34,7 +34,7 @@ we implement the boot sequence for a different machine. There are more switches for the `CFLAGS` on the `Makefile`, since we will now start creating higher-level functions for our C library and we don't want the compiler to include any external code if we make a mistake with a declaration. -We also added some flags to turn warnings into errors, since an apparantly minor mistake +We also added some flags to turn warnings into errors, since an apparently minor mistake converting pointers can blow up later on. This also forced us to modify some misc pointer declarations in our code. From 720485aad091e58796f740c5a078f427d8b0b144 Mon Sep 17 00:00:00 2001 From: Semen Zhydenko Date: Tue, 25 Sep 2018 14:28:04 +0200 Subject: [PATCH 2/2] pased -> passed --- 23-fixes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/23-fixes/README.md b/23-fixes/README.md index e9c4acb..4289413 100644 --- a/23-fixes/README.md +++ b/23-fixes/README.md @@ -16,7 +16,7 @@ We add `-ffreestanding` when compiling `.o` files, which includes `kernel_entry Before, we disabled libgcc (not libc) through the use of `-nostdlib` and we didn't re-enable it for linking. Since this is tricky, we'll delete `-nostdlib` -`-nostdinc` was also pased to gcc, but we will need it for step 3, so let's delete it. +`-nostdinc` was also passed to gcc, but we will need it for step 3, so let's delete it. 2. kernel.c `main()` function