diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6e04ca983..ea6b9c6df 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -152,4 +152,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: check typos - uses: crate-ci/typos@v1.27.3 + uses: crate-ci/typos@v1.29.9 diff --git a/read-fonts/src/collections/int_set/mod.rs b/read-fonts/src/collections/int_set/mod.rs index 98602ba8f..28c7d777f 100644 --- a/read-fonts/src/collections/int_set/mod.rs +++ b/read-fonts/src/collections/int_set/mod.rs @@ -427,7 +427,7 @@ impl IntSet { /// Return the inverted version of this set. pub fn invert(&mut self) { let reuse_storage = match &mut self.0 { - // take the existing storage to reuse in a new set of the oppposite + // take the existing storage to reuse in a new set of the opposite // type. Membership::Inclusive(s) | Membership::Exclusive(s) => { std::mem::replace(s, BitSet::empty()) diff --git a/write-fonts/src/from_obj.rs b/write-fonts/src/from_obj.rs index e4b77e5f6..0ac64bcd6 100644 --- a/write-fonts/src/from_obj.rs +++ b/write-fonts/src/from_obj.rs @@ -45,7 +45,7 @@ pub trait ToOwnedObj { fn to_owned_obj(&self, data: FontData) -> T; } -/// A conversion from a fully resolveable parsed font table to its owned equivalent. +/// A conversion from a fully resolvable parsed font table to its owned equivalent. /// /// As with [`ToOwnedObj`], you should not need to implement this manually. pub trait ToOwnedTable: ToOwnedObj { diff --git a/write-fonts/src/graph.rs b/write-fonts/src/graph.rs index c9e4b0da5..c096a5c3b 100644 --- a/write-fonts/src/graph.rs +++ b/write-fonts/src/graph.rs @@ -288,7 +288,7 @@ impl Graph { /// Attempt to pack the graph. /// /// This involves finding an order for objects such that all offsets are - /// resolveable. + /// resolvable. /// /// In the simple case, this just means finding a topological ordering. /// In exceptional cases, however, this may require us to significantly