diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 207df7c04..c12cabc00 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -143,4 +143,4 @@ jobs: steps: - uses: actions/checkout@v4 # Executes "typos ." - - uses: crate-ci/typos@v1.16.11 + - uses: crate-ci/typos@v1.32.0 diff --git a/.typos.toml b/.typos.toml index e6e04974f..de411b118 100644 --- a/.typos.toml +++ b/.typos.toml @@ -7,15 +7,17 @@ extend-exclude = [ ] [default.extend-words] -ba = "ba" CLASSE = "CLASSE" -conectix = "conectix" Dake = "Dake" EXTINT = "EXTINT" INOUT = "INOUT" +SME = "SME" # Secure Memory Encryption +THR = "THR" # Transmitter Holding Register +TRANSLATER = "TRANSLATER" +ba = "ba" +conectix = "conectix" liness = "liness" outout = "outout" -TRANSLATER = "TRANSLATER" [default.extend-identifiers] fo = "fo" diff --git a/block/src/qcow/qcow_raw_file.rs b/block/src/qcow/qcow_raw_file.rs index 764b02da6..bb4f849ac 100644 --- a/block/src/qcow/qcow_raw_file.rs +++ b/block/src/qcow/qcow_raw_file.rs @@ -36,7 +36,7 @@ impl QcowRawFile { } /// Reads `count` 64 bit offsets and returns them as a vector. - /// `mask` optionally ands out some of the bits on the file. + /// `mask` optionally `&`s out some of the bits on the file. pub fn read_pointer_table( &mut self, offset: u64, @@ -55,7 +55,7 @@ impl QcowRawFile { } /// Reads a cluster's worth of 64 bit offsets and returns them as a vector. - /// `mask` optionally ands out some of the bits on the file. + /// `mask` optionally `&`s out some of the bits on the file. pub fn read_pointer_cluster(&mut self, offset: u64, mask: Option) -> io::Result> { let count = self.cluster_size / size_of::() as u64; self.read_pointer_table(offset, count, mask) diff --git a/vm-migration/src/lib.rs b/vm-migration/src/lib.rs index 3e843c26f..49d2ef820 100644 --- a/vm-migration/src/lib.rs +++ b/vm-migration/src/lib.rs @@ -101,7 +101,7 @@ impl SnapshotData { /// Data structure to describe snapshot data /// -/// A Snapshottable component's snapshot is a tree of snapshots, where leafs +/// A Snapshottable component's snapshot is a tree of snapshots, where leaves /// contain the snapshot data. Nodes of this tree track all their children /// through the snapshots field, which is basically their sub-components. /// Leaves will typically have an empty snapshots map, while nodes usually