ci: bump typos
Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de> On-behalf-of: SAP philipp.schuster@sap.com
This commit is contained in:
parent
92f9e20f57
commit
12b72ba3c1
4 changed files with 9 additions and 7 deletions
2
.github/workflows/quality.yaml
vendored
2
.github/workflows/quality.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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<u64>) -> io::Result<Vec<u64>> {
|
||||
let count = self.cluster_size / size_of::<u64>() as u64;
|
||||
self.read_pointer_table(offset, count, mask)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue