From a6a70bbbac95ed993fc3ebbaa35d931c5a3edb14 Mon Sep 17 00:00:00 2001 From: atlas Date: Thu, 9 Apr 2026 20:13:46 -0400 Subject: [PATCH] doc(hal): fix timeout description --- wgpu-hal/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-hal/src/lib.rs b/wgpu-hal/src/lib.rs index 247c84827d..c457401c59 100644 --- a/wgpu-hal/src/lib.rs +++ b/wgpu-hal/src/lib.rs @@ -1101,7 +1101,7 @@ pub trait Device: WasmNotSendSync { /// Calling `wait` with a lower [`FenceValue`] than `fence`'s current value /// returns immediately. /// - /// If `timeout` is provided, the function will block indefinitely or until + /// If `timeout` is not provided, the function will block indefinitely or until /// an error is encountered. /// /// Returns `Ok(true)` on success and `Ok(false)` on timeout.