From cf7d3a922dbb0ccb0a8244d618df786087a3d5dc Mon Sep 17 00:00:00 2001 From: JMS55 <47158642+JMS55@users.noreply.github.com> Date: Wed, 10 Apr 2024 14:59:16 -0400 Subject: [PATCH] Fix error tense Co-authored-by: Patrick Walton --- crates/bevy_pbr/src/meshlet/from_mesh.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_pbr/src/meshlet/from_mesh.rs b/crates/bevy_pbr/src/meshlet/from_mesh.rs index 695bdc498ea66..bae7feb1177d9 100644 --- a/crates/bevy_pbr/src/meshlet/from_mesh.rs +++ b/crates/bevy_pbr/src/meshlet/from_mesh.rs @@ -360,7 +360,7 @@ fn convert_meshlet_bounds(bounds: meshopt_Bounds) -> MeshletBoundingSphere { pub enum MeshToMeshletMeshConversionError { #[error("Mesh primitive topology is not TriangleList")] WrongMeshPrimitiveTopology, - #[error("Mesh attributes is not {{POSITION, NORMAL, UV_0, TANGENT}}")] + #[error("Mesh attributes are not {{POSITION, NORMAL, UV_0, TANGENT}}")] WrongMeshVertexAttributes, #[error("Mesh has no indices")] MeshMissingIndices,