From 7070bb608dcb1709629c49667d689a6993b9ecf2 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 22 Jan 2020 12:42:19 +0100 Subject: [PATCH] Fix typo Accidentally introduced in https://github.com/phil-opp/blog_os/commit/0b9ca847356c3f932e038d3b32d5e85a6e53e971. --- .../second-edition/posts/01-freestanding-rust-binary/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md b/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md index cfc1f87f..6bba4d3e 100644 --- a/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md +++ b/blog/content/second-edition/posts/01-freestanding-rust-binary/index.md @@ -507,7 +507,7 @@ cargo rustc -- -C link-args="/ENTRY:_start /SUBSYSTEM:console" cargo rustc -- -C link-args="-e __start -static -nostartfiles" ``` -Note that this is just a minimal example of a freestanding Rust binary. This binary expects various things, for example that a stack is initialized when the `_start` function is called. **So it probably for any real use of such a binary, more steps are required**. +Note that this is just a minimal example of a freestanding Rust binary. This binary expects various things, for example that a stack is initialized when the `_start` function is called. **So for any real use of such a binary, more steps are required**. ## What's next?