From 1f0e1f0e21a1ef6d3ad97d85cb2ec563e670468f Mon Sep 17 00:00:00 2001 From: skierpage Date: Sun, 25 Jun 2017 04:32:55 -0700 Subject: [PATCH] Two minor English fixes (#338) Garbled sentence, no word "everytime". --- blog/content/posts/01-multiboot-kernel/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog/content/posts/01-multiboot-kernel/index.md b/blog/content/posts/01-multiboot-kernel/index.md index 6704412c..bed4576f 100644 --- a/blog/content/posts/01-multiboot-kernel/index.md +++ b/blog/content/posts/01-multiboot-kernel/index.md @@ -5,7 +5,7 @@ url = "multiboot-kernel/" date = "2015-08-18" +++ -This post explains how to create a minimal x86 operating system kernel. In fact, it will just boot and print `OK` to the screen. The following blog posts we will extend it using the [Rust] programming language. +This post explains how to create a minimal x86 operating system kernel. In fact, it will just boot and print `OK` to the screen. In subsequent blog posts we will extend it using the [Rust] programming language. [Rust]: http://www.rust-lang.org/ @@ -244,7 +244,7 @@ You can test it on real hardware, too. Just burn the ISO to a disk or USB stick ## Build Automation -Right now we need to execute 4 commands in the right order everytime we change a file. That's bad. So let's automate the build using a [Makefile][Makefile tutorial]. But first we should create some clean directory structure for our source files to separate the architecture specific files: +Right now we need to execute 4 commands in the right order every time we change a file. That's bad. So let's automate the build using a [Makefile][Makefile tutorial]. But first we should create some clean directory structure for our source files to separate the architecture specific files: [Makefile tutorial]: http://mrbook.org/blog/tutorials/make/