From 4bfd93352223ce8185bce8630de2b76777fba5d2 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 3 Oct 2015 18:50:48 +0200 Subject: [PATCH] Improve phrasing --- _posts/2015-09-02-setup-rust.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2015-09-02-setup-rust.md b/_posts/2015-09-02-setup-rust.md index 1f4a1fc1..4bddf6e3 100644 --- a/_posts/2015-09-02-setup-rust.md +++ b/_posts/2015-09-02-setup-rust.md @@ -316,7 +316,7 @@ call rust_main mov [0xb8010], rax hlt ``` -Ok that's enough assembly for now, let's switch back to Rust and print the traditional `Hello World!`. +Ok, that's enough assembly for now. Let's switch back to Rust. ## Hello World! Of course we could just write some magic bytes to memory like we did in assembly. But I chose some code that highlights some of Rust's features: @@ -367,6 +367,6 @@ Let's break it down: [unsafe block]: https://doc.rust-lang.org/book/unsafe.html ## What's next? -Until now we write magic bits to memory every time we want to print something. It's time to end this hackery. In the [next post] we create a VGA buffer module that allows us to print strings in different colors through a nice interface. +Until now we write magic bits to some memory location when we want to print something to screen. In the [next post] we create a abstraction for the VGA text buffer that allows us to print strings in different colors and provides a simple interface. [next post]: {{ site.url }}{{ page.next.url }}