Avoid Zola errors in new 3rd edition draft

This commit is contained in:
Philipp Oppermann
2020-12-16 16:00:09 +01:00
parent 874f9dbaed
commit e6c099ee5b

View File

@@ -1,8 +1,7 @@
+++ +++
title = "A Minimal Rust Kernel" title = "A Minimal Rust Kernel"
weight = 2 weight = 2
path = "minimal-rust-kernel" date = 0000-01-01
date = 2018-02-10
[extra] [extra]
chapter = "Bare Bones" chapter = "Bare Bones"
@@ -426,7 +425,7 @@ The [`extern "C"`] qualifier specifies that the function should use the same [AB
The `!` return type indicates that the function is [diverging], which means that it must never return. The `bootloader` requires this because its code might no longer be valid after the kernel modified the system state such as the [page tables]. The `!` return type indicates that the function is [diverging], which means that it must never return. The `bootloader` requires this because its code might no longer be valid after the kernel modified the system state such as the [page tables].
[diverging]: https://doc.rust-lang.org/rust-by-example/fn/diverging.html [diverging]: https://doc.rust-lang.org/rust-by-example/fn/diverging.html
[page tables]: @/second-edition/posts/08-paging-introduction/index.md [page tables]: @/edition-2/posts/08-paging-introduction/index.md
</details></div> </details></div>