diff --git a/tests/tests/wgpu-gpu/regression/issue_4024.rs b/tests/tests/wgpu-gpu/regression/issue_4024.rs index c487222c7e..40b17cb214 100644 --- a/tests/tests/wgpu-gpu/regression/issue_4024.rs +++ b/tests/tests/wgpu-gpu/regression/issue_4024.rs @@ -58,7 +58,7 @@ static QUEUE_SUBMITTED_CALLBACK_ORDERING: GpuTestConfiguration = GpuTestConfigur let ordering_clone_map_async = Arc::clone(&ordering); let ordering_clone_queue_submitted = Arc::clone(&ordering); - // Register the callabacks. + // Register the callbacks. buffer.slice(..).map_async(MapMode::Read, move |_| { let mut guard = ordering_clone_map_async.lock(); guard.value_read_map_async = Some(guard.counter); diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 0c93fd9ec5..947a674eda 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -35,7 +35,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wgpu_validate_locks)'] } [lib] [features] -#! See docuemntation for the `wgpu` crate for more in-depth information on these features. +#! See documentation for the `wgpu` crate for more in-depth information on these features. # TODO(https://github.com/gfx-rs/wgpu/issues/6826): "std" is a default feature for # compatibility with prior behavior only, and should be removed once we know how