From 7d8b7b81840397fb26ecfd49cd7037b6795d049c Mon Sep 17 00:00:00 2001 From: Pnoenix Date: Wed, 26 Mar 2025 19:41:07 +0100 Subject: [PATCH] Did cargo fmt --all again to make CI happy --- crates/bevy_mesh/src/mesh.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_mesh/src/mesh.rs b/crates/bevy_mesh/src/mesh.rs index 7d8349480c..5b13ab1018 100644 --- a/crates/bevy_mesh/src/mesh.rs +++ b/crates/bevy_mesh/src/mesh.rs @@ -828,8 +828,8 @@ impl Mesh { /// /// If any of the following conditions are not met, this function errors: /// * All of the vertex attributes that have the same attribute id, must also - /// have the same attribute type. - /// For example two attributes with the same id, but where one is a + /// have the same attribute type. + /// For example two attributes with the same id, but where one is a /// [`VertexAttributeValues::Float32`] and the other is a /// [`VertexAttributeValues::Float32x3`], would be invalid. /// * Both meshes must have the same primitive topology.