Skip to content

Commit 87811d8

Browse files
committed
Fix docs
1 parent 0b55e87 commit 87811d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

crates/bevy_pbr/src/wireframe.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,24 +178,24 @@ impl Default for WireframeConfig {
178178
}
179179
}
180180

181-
/// Internal [`WireframePlugin`] component.
182-
///
183181
/// Holds the offset of a [`WireframeUniform`] in the [`GlobalWireframeMeta::uniforms`].
182+
///
183+
/// Internal [`WireframePlugin`] component.
184184
#[derive(Component, Copy, Clone, Debug, Default)]
185185
#[repr(transparent)]
186186
struct WireframeUniformOffset(u32);
187187

188-
/// Internal [`WireframePlugin`] state.
189-
///
190188
/// [`WireframeUniform`] is the GPU representation of a [`Wireframe`].
189+
///
190+
/// Internal [`WireframePlugin`] state.
191191
#[derive(Debug, AsStd140)]
192192
struct WireframeUniform {
193193
color: Vec4,
194194
}
195195

196-
/// Internal [`WireframePlugin`] resource.
197-
///
198196
/// The data required for rendering [`Wireframe`]s.
197+
///
198+
/// Internal [`WireframePlugin`] resource.
199199
#[derive(Component)]
200200
struct GlobalWireframeMeta {
201201
uniforms: DynamicUniformVec<WireframeUniform>,

0 commit comments

Comments
 (0)