From a085d0b3a5a4aa70d7ca4ddedbcc9ed53c758b7b Mon Sep 17 00:00:00 2001 From: Matt Keeter Date: Sun, 25 May 2025 10:10:39 -0400 Subject: [PATCH] Fix typo in `egpu-wgpu/Cargo.toml` (#7083) --- crates/egui-wgpu/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui-wgpu/Cargo.toml b/crates/egui-wgpu/Cargo.toml index 4c491d68..e637a878 100644 --- a/crates/egui-wgpu/Cargo.toml +++ b/crates/egui-wgpu/Cargo.toml @@ -43,7 +43,7 @@ wayland = ["winit?/wayland"] x11 = ["winit?/x11"] ## Make the renderer `Sync` on wasm, exploiting that by default wasm isn't multithreaded. -## It may make code easier, expecially when targeting both native and web. +## It may make code easier, especially when targeting both native and web. ## On native most wgpu objects are send and sync, on the web they are not (by nature of the WebGPU specification). ## This is not supported in [multithreaded WASM](https://gpuweb.github.io/gpuweb/explainer/#multithreading-transfer). ## Thus that usage is guarded against with compiler errors in wgpu.