From b2229e0a712f924845173d6b66442e07971dfff4 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Fri, 18 Oct 2024 11:43:19 +0200 Subject: [PATCH] doc string fixes --- crates/viewer/re_renderer/src/mesh.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,