diff --git a/crates/viewer/re_renderer/src/mesh.rs b/crates/viewer/re_renderer/src/mesh.rs index 0c88c8c4774cf..fb61b7d8ca3c0 100644 --- a/crates/viewer/re_renderer/src/mesh.rs +++ b/crates/viewer/re_renderer/src/mesh.rs @@ -157,7 +157,7 @@ pub enum MeshError { pub struct Material { pub label: DebugLabel, - /// Index range within the owning [`Mesh`] that should be rendered with this material. + /// Index range within the owning [`CpuMesh`] that should be rendered with this material. pub index_range: Range, /// Base color texture, also known as albedo. @@ -190,7 +190,7 @@ pub struct GpuMesh { #[derive(Clone)] pub struct GpuMaterial { - /// Index range within the owning [`Mesh`] that should be rendered with this material. + /// Index range within the owning [`CpuMesh`] that should be rendered with this material. pub index_range: Range, pub bind_group: GpuBindGroup,