Merge pull request #1927 from rust-osdev/fix-typos

misc: update to typos 1.45
This commit is contained in:
Philipp Schuster 2026-04-06 12:16:40 +00:00 committed by GitHub
commit f6aa5a88fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v6
# Executes "typos ."
- uses: crate-ci/typos@v1.44.0
- uses: crate-ci/typos@v1.45.0
lints:
name: Lints
runs-on: ubuntu-latest

View file

@ -157,7 +157,7 @@ pub struct GraphicsOutputProtocol {
pub blt: unsafe extern "efiapi" fn(
*mut Self,
// Depending on `blt_operation`, this is an IN parameter (readable)
// or an OUT parameter (writeable).
// or an OUT parameter (writable).
blt_buffer: *mut GraphicsOutputBltPixel,
blt_operation: GraphicsOutputBltOperation,
source_x: usize,

View file

@ -407,7 +407,7 @@ pub fn run_qemu(arch: UefiArch, opt: &QemuOpt) -> Result<()> {
// Make a copy of the OVMF vars file so that it can be used
// read+write without modifying the original. Under AArch64, some
// versions of OVMF won't boot if the vars file isn't writeable.
// versions of OVMF won't boot if the vars file isn't writable.
let ovmf_vars = tmp_dir.join("ovmf_vars");
fs_err::copy(&ovmf_paths.vars, &ovmf_vars)?;
// Necessary, as for example on NixOS, the files are read-only inside