chore(deps): bump crate-ci/typos from 1.29.9 to 1.30.0 (#7259)

* chore(deps): bump crate-ci/typos from 1.29.9 to 1.30.0

Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.29.9 to 1.30.0.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crate-ci/typos/compare/v1.29.9...v1.30.0)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix small typo

Signed-off-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
This commit is contained in:
dependabot[bot] 2025-03-03 23:09:41 +00:00 committed by GitHub
parent e4cc5cb9ad
commit 8394b10e6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -736,7 +736,7 @@ jobs:
run: taplo format --check --diff
- name: Check for typos
uses: crate-ci/typos@v1.29.9
uses: crate-ci/typos@v1.30.0
check-cts-runner:
# runtime is normally 2 minutes

View File

@ -1791,9 +1791,9 @@ impl<W: Write> Writer<W> {
Mf::Unpack4xI8 => Function::Regular("unpack4xI8"),
Mf::Unpack4xU8 => Function::Regular("unpack4xU8"),
Mf::Inverse => {
let typ = func_ctx.resolve_type(arg, &module.types);
let ty = func_ctx.resolve_type(arg, &module.types);
let Some(overload) = InversePolyfill::find_overload(typ) else {
let Some(overload) = InversePolyfill::find_overload(ty) else {
return Err(Error::UnsupportedMathFunction(fun));
};