From 01b3204e7f911256deb2263194e54770c5a9999e Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 12 Aug 2025 09:54:04 -0700 Subject: [PATCH] [hal] Minor doc clarification. (#8087) Don't use the term "single-threaded", since it's confusing. Just say what you mean. --- wgpu-hal/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wgpu-hal/src/lib.rs b/wgpu-hal/src/lib.rs index e6b4e0b0f..331af72ba 100644 --- a/wgpu-hal/src/lib.rs +++ b/wgpu-hal/src/lib.rs @@ -1053,9 +1053,9 @@ pub trait Queue: WasmNotSendSync { /// Update `fence` to `value` when the operation is complete. See /// [`Fence`] for details. /// - /// A `wgpu_hal` queue is "single threaded": all command buffers are - /// executed in the order they're submitted, with each buffer able to see - /// previous buffers' results. Specifically: + /// All command buffers submitted to a `wgpu_hal` queue are executed in the + /// order they're submitted, with each buffer able to observe the effects of + /// previous buffers' execution. Specifically: /// /// - If two calls to `submit` on a single `Queue` occur in a particular /// order (that is, they happen on the same thread, or on two threads that