From f8844552997fdf3a893d758c52c62a8bc3d204eb Mon Sep 17 00:00:00 2001 From: MihailRis Date: Thu, 24 Oct 2024 16:38:28 +0300 Subject: [PATCH] fix typos --- doc/specs/vec3_model_spec.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/specs/vec3_model_spec.md b/doc/specs/vec3_model_spec.md index 8890cf21..681fead6 100644 --- a/doc/specs/vec3_model_spec.md +++ b/doc/specs/vec3_model_spec.md @@ -24,11 +24,11 @@ struct VertexAttribute { sizeof(VertexAttribute) == 6; // + dynamic data array struct Mesh { - uint32 triangles_count; // number of mesh triangles + uint32 triangle_count; // number of mesh triangles uint16 material_id; uint16 flags; uint16 attribute_count; - VertexAttributes attributes[]; + VertexAttribute attributes[]; uint8 indices[]; // if compressed, first 4 bytes of compressed data is compressed buffer size }; sizeof(Mesh) == 10; // + dynamic attributes array + dynamic indices array