Skip to content

Commit 8394b10

Browse files
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](crate-ci/typos@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] <[email protected]> * Fix small typo Signed-off-by: Connor Fitzgerald <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Connor Fitzgerald <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Connor Fitzgerald <[email protected]>
1 parent e4cc5cb commit 8394b10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ jobs:
736736
run: taplo format --check --diff
737737

738738
- name: Check for typos
739-
uses: crate-ci/typos@v1.29.9
739+
uses: crate-ci/typos@v1.30.0
740740

741741
check-cts-runner:
742742
# runtime is normally 2 minutes

naga/src/back/wgsl/writer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1791,9 +1791,9 @@ impl<W: Write> Writer<W> {
17911791
Mf::Unpack4xI8 => Function::Regular("unpack4xI8"),
17921792
Mf::Unpack4xU8 => Function::Regular("unpack4xU8"),
17931793
Mf::Inverse => {
1794-
let typ = func_ctx.resolve_type(arg, &module.types);
1794+
let ty = func_ctx.resolve_type(arg, &module.types);
17951795

1796-
let Some(overload) = InversePolyfill::find_overload(typ) else {
1796+
let Some(overload) = InversePolyfill::find_overload(ty) else {
17971797
return Err(Error::UnsupportedMathFunction(fun));
17981798
};
17991799

0 commit comments

Comments
 (0)