Fix a tiny typo (#799)

This commit is contained in:
Lars Kloosterman
2020-05-03 15:24:03 -04:00
committed by GitHub
parent 1adfacf21d
commit 389b97f13e

View File

@@ -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