From 6eb9c83345d239fa6ae60c63df48663fec8edfc5 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 3 Apr 2019 12:12:48 +0200 Subject: [PATCH] Spell out post-* branch names in posts --- .../second-edition/posts/01-freestanding-rust-binary/index.md | 2 +- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- blog/content/second-edition/posts/03-vga-text-buffer/index.md | 2 +- blog/content/second-edition/posts/04-unit-testing/index.md | 2 +- blog/content/second-edition/posts/05-integration-tests/index.md | 2 +- blog/content/second-edition/posts/06-cpu-exceptions/index.md | 2 +- blog/content/second-edition/posts/07-double-faults/index.md | 2 +- .../second-edition/posts/08-hardware-interrupts/index.md | 2 +- .../second-edition/posts/09-paging-introduction/index.md | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) 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 d30e8f15..62e8834e 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 @@ -12,7 +12,7 @@ The first step in creating our own operating system kernel is to create a Rust e -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-01`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments 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 23674624..3dfed1a6 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 @@ -12,7 +12,7 @@ In this post we create a minimal 64-bit Rust kernel for the x86 architecture. We -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-02`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/03-vga-text-buffer/index.md b/blog/content/second-edition/posts/03-vga-text-buffer/index.md index 4f811e70..6fc2791b 100644 --- a/blog/content/second-edition/posts/03-vga-text-buffer/index.md +++ b/blog/content/second-edition/posts/03-vga-text-buffer/index.md @@ -13,7 +13,7 @@ The [VGA text mode] is a simple way to print text to the screen. In this post, w -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-03`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/04-unit-testing/index.md b/blog/content/second-edition/posts/04-unit-testing/index.md index 7267fc5b..deea9afa 100644 --- a/blog/content/second-edition/posts/04-unit-testing/index.md +++ b/blog/content/second-edition/posts/04-unit-testing/index.md @@ -10,7 +10,7 @@ This post explores unit testing in `no_std` executables using Rust's built-in te -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-04`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/05-integration-tests/index.md b/blog/content/second-edition/posts/05-integration-tests/index.md index 900c3f41..d5cb9b59 100644 --- a/blog/content/second-edition/posts/05-integration-tests/index.md +++ b/blog/content/second-edition/posts/05-integration-tests/index.md @@ -10,7 +10,7 @@ To complete the testing picture we implement a basic integration test framework, -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-05`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/06-cpu-exceptions/index.md b/blog/content/second-edition/posts/06-cpu-exceptions/index.md index b102671a..e2015f36 100644 --- a/blog/content/second-edition/posts/06-cpu-exceptions/index.md +++ b/blog/content/second-edition/posts/06-cpu-exceptions/index.md @@ -12,7 +12,7 @@ CPU exceptions occur in various erroneous situations, for example when accessing -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-06`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/07-double-faults/index.md b/blog/content/second-edition/posts/07-double-faults/index.md index 876b71d9..f41ce34b 100644 --- a/blog/content/second-edition/posts/07-double-faults/index.md +++ b/blog/content/second-edition/posts/07-double-faults/index.md @@ -10,7 +10,7 @@ This post explores the double fault exception in detail, which occurs when the C -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-07`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/08-hardware-interrupts/index.md b/blog/content/second-edition/posts/08-hardware-interrupts/index.md index 2103d52f..61cb0243 100644 --- a/blog/content/second-edition/posts/08-hardware-interrupts/index.md +++ b/blog/content/second-edition/posts/08-hardware-interrupts/index.md @@ -10,7 +10,7 @@ In this post we set up the programmable interrupt controller to correctly forwar -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-08`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments diff --git a/blog/content/second-edition/posts/09-paging-introduction/index.md b/blog/content/second-edition/posts/09-paging-introduction/index.md index c9dbec7e..df553e5d 100644 --- a/blog/content/second-edition/posts/09-paging-introduction/index.md +++ b/blog/content/second-edition/posts/09-paging-introduction/index.md @@ -10,7 +10,7 @@ This post introduces _paging_, a very common memory management scheme that we wi -This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch]. +This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-09`][post branch] branch. [GitHub]: https://github.com/phil-opp/blog_os [at the bottom]: #comments