From f8b67a752afb13024bd4388f94a9d98ac96c0329 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Sat, 7 Dec 2024 01:30:09 -0500 Subject: [PATCH] docs: remove last paragraph from `CommandBuffer::data` (#6680) --- wgpu-core/src/command/mod.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/wgpu-core/src/command/mod.rs b/wgpu-core/src/command/mod.rs index cbc6969e29..b11a8595fa 100644 --- a/wgpu-core/src/command/mod.rs +++ b/wgpu-core/src/command/mod.rs @@ -461,11 +461,6 @@ pub struct CommandBuffer { label: String, /// The mutable state of this command buffer. - /// - /// This `Option` is populated when the command buffer is first created. - /// When this is submitted, dropped, or destroyed, its contents are - /// extracted into a [`BakedCommands`] by - /// [`CommandBufferMutable::into_baked_commands`]. pub(crate) data: Mutex, }