From 854664a90d56391fc8b1300a9ad0b9d4fedb6cb8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:32:39 +0000 Subject: [PATCH] chore(deps): update crate-ci/typos action to v1.37.3 (#8306) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andreas Reich --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 2 +- wgpu-core/src/pipeline_cache.rs | 2 +- wgpu-hal/src/dx12/command.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54d8561f1..ac1fb2876 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -691,7 +691,7 @@ jobs: run: taplo format --check --diff - name: Check for typos - uses: crate-ci/typos@v1.36.3 + uses: crate-ci/typos@v1.37.3 check-cts-runner: # runtime is normally 2 minutes diff --git a/CHANGELOG.md b/CHANGELOG.md index f568a86ab..6fa8bd630 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3944,7 +3944,7 @@ DeviceDescriptor { - Explicitly set Vulkan debug message types instead of !empty() by @victorvde in [#2321](https://github.com/gfx-rs/wgpu/pull/2321) - Use stencil read/write masks by @kvark in [#2382](https://github.com/gfx-rs/wgpu/pull/2382) -- Vulkan: correctly set INDEPENDENT_BLEND,make runable on Android 8.x by @jinleili in [#2498](https://github.com/gfx-rs/wgpu/pull/2498) +- Vulkan: correctly set INDEPENDENT_BLEND,make runnable on Android 8.x by @jinleili in [#2498](https://github.com/gfx-rs/wgpu/pull/2498) - Fix ASTC format mapping by @kvark in [#2476](https://github.com/gfx-rs/wgpu/pull/2476) - Support flipped Y on VK 1.1 devices by @cwfitzgerald in [#2512](https://github.com/gfx-rs/wgpu/pull/2512) - Fixed builtin(primitive_index) for vulkan backend by @kwillemsen in [#2716](https://github.com/gfx-rs/wgpu/pull/2716) diff --git a/wgpu-core/src/pipeline_cache.rs b/wgpu-core/src/pipeline_cache.rs index 8f4e65cfe..ca090e2e5 100644 --- a/wgpu-core/src/pipeline_cache.rs +++ b/wgpu-core/src/pipeline_cache.rs @@ -130,7 +130,7 @@ const ABI: u32 = size_of::<*const ()>() as u32; /// /// Note that wgpu does not protect against malicious writes to e.g. a file used /// to store a pipeline cache. -/// That is the resonsibility of the end application, such as by using a +/// That is the responsibility of the end application, such as by using a /// private space. const HASH_SPACE_VALUE: u64 = 0xFEDCBA9_876543210; diff --git a/wgpu-hal/src/dx12/command.rs b/wgpu-hal/src/dx12/command.rs index 80cdec40d..7cd7cdac5 100644 --- a/wgpu-hal/src/dx12/command.rs +++ b/wgpu-hal/src/dx12/command.rs @@ -920,7 +920,7 @@ impl crate::CommandEncoder for super::CommandEncoder { Flags: Direct3D12::D3D12_RESOURCE_BARRIER_FLAG_NONE, Anonymous: Direct3D12::D3D12_RESOURCE_BARRIER_0 { // Note: this assumes `D3D12_RESOURCE_STATE_RENDER_TARGET`. - // If it's not the case, we can include the `TextureUses` in `PassResove`. + // If it's not the case, we can include the `TextureUses` in `PassResolve`. Transition: mem::ManuallyDrop::new( Direct3D12::D3D12_RESOURCE_TRANSITION_BARRIER { pResource: unsafe { borrow_interface_temporarily(&resolve.src.0) },