From 389b97f13e6cb538168093b6f4df419beb17367e Mon Sep 17 00:00:00 2001 From: Lars Kloosterman Date: Sun, 3 May 2020 15:24:03 -0400 Subject: [PATCH] Fix a tiny typo (#799) --- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md index 7213fcb0..c9814a6b 100644 --- a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md +++ b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md @@ -347,7 +347,7 @@ So we want to minimize the use of `unsafe` as much as possible. Rust gives us th ## Running our Kernel -Now that we have an executable that does something perceptible, it is time to run it. First, we need to turn our compiled kernel into a bootable disk image by linking it with a bootloader. Then we can run the disk image in the [QEMU] virtual machine or boot it on real hardware using an USB stick. +Now that we have an executable that does something perceptible, it is time to run it. First, we need to turn our compiled kernel into a bootable disk image by linking it with a bootloader. Then we can run the disk image in the [QEMU] virtual machine or boot it on real hardware using a USB stick. ### Creating a Bootimage