Fix minor grammar mistakes

This commit is contained in:
MysticalUser
2022-05-15 15:46:34 -04:00
committed by GitHub
parent 1519a17803
commit 71870a05b0

View File

@@ -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: