Skip to content

Commit 01b3204

Browse files
authored
[hal] Minor doc clarification. (#8087)
Don't use the term "single-threaded", since it's confusing. Just say what you mean.
1 parent a96a6cd commit 01b3204

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wgpu-hal/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,9 +1053,9 @@ pub trait Queue: WasmNotSendSync {
10531053
/// Update `fence` to `value` when the operation is complete. See
10541054
/// [`Fence`] for details.
10551055
///
1056-
/// A `wgpu_hal` queue is "single threaded": all command buffers are
1057-
/// executed in the order they're submitted, with each buffer able to see
1058-
/// previous buffers' results. Specifically:
1056+
/// All command buffers submitted to a `wgpu_hal` queue are executed in the
1057+
/// order they're submitted, with each buffer able to observe the effects of
1058+
/// previous buffers' execution. Specifically:
10591059
///
10601060
/// - If two calls to `submit` on a single `Queue` occur in a particular
10611061
/// order (that is, they happen on the same thread, or on two threads that

0 commit comments

Comments
 (0)