From 71870a05b0d2511a765caaf345c8b0e3632da95d Mon Sep 17 00:00:00 2001 From: MysticalUser <61061695+MysticalUser@users.noreply.github.com> Date: Sun, 15 May 2022 15:46:34 -0400 Subject: [PATCH] Fix minor grammar mistakes --- blog/content/edition-2/posts/05-cpu-exceptions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/05-cpu-exceptions/index.md b/blog/content/edition-2/posts/05-cpu-exceptions/index.md index 2a59311a..f90b33f4 100644 --- a/blog/content/edition-2/posts/05-cpu-exceptions/index.md +++ b/blog/content/edition-2/posts/05-cpu-exceptions/index.md @@ -432,7 +432,7 @@ pub extern "C" fn _start() -> ! { } ``` -Remember, this `_start` function is used when running `cargo test --lib`, since Rust's tests the `lib.rs` completely independent of the `main.rs`. We need to call `init` here to set up an IDT before running the tests. +Remember, this `_start` function is used when running `cargo test --lib`, since Rust tests the `lib.rs` completely independently of the `main.rs`. We need to call `init` here to set up an IDT before running the tests. Now we can create a `test_breakpoint_exception` test: