From 13a7a850f88ca8432c82a0f7994cadc5634bb9df Mon Sep 17 00:00:00 2001 From: Pnoenix Date: Wed, 26 Mar 2025 18:21:13 +0100 Subject: [PATCH] Added indentation to doc comment --- crates/bevy_mesh/src/mesh.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_mesh/src/mesh.rs b/crates/bevy_mesh/src/mesh.rs index 2e486df544..9264b645b0 100644 --- a/crates/bevy_mesh/src/mesh.rs +++ b/crates/bevy_mesh/src/mesh.rs @@ -828,7 +828,7 @@ impl Mesh { /// /// Returns [`Err(MeshMergeError)`](MeshMergeError) if any of the following conditions are met: /// * the vertex attribute values of `other` are incompatible with `self`. - /// For example, [`VertexAttributeValues::Float32`] is incompatible with [`VertexAttributeValues::Float32x3`]. + /// For example, [`VertexAttributeValues::Float32`] is incompatible with [`VertexAttributeValues::Float32x3`]. /// * the primitive topology of `other` doesn't match the primitive topology of `self` pub fn merge(&mut self, other: &Mesh) -> Result<(), MeshMergeError> { use VertexAttributeValues::*;