From 331e1e4eb2ff115a6e07272db065396838546dc8 Mon Sep 17 00:00:00 2001 From: matt rice Date: Sat, 9 Mar 2024 09:28:21 +0000 Subject: [PATCH] Fix minor doc typos (#577) --- rend3-types/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rend3-types/src/lib.rs b/rend3-types/src/lib.rs index 1e601bdf..8444ec16 100644 --- a/rend3-types/src/lib.rs +++ b/rend3-types/src/lib.rs @@ -1073,8 +1073,8 @@ impl MaterialArray for [T; C] { /// - A material array indexed by the material index. Each material has: /// - One u32 per texture. If this value is 0, the texture doesn't exist. If /// this value is non-zero, subtract one and index into the texture array to -/// ge thte texture. -/// - Padding to 16 byte alignemnet. +/// get the texture. +/// - Padding to 16 byte alignment. /// - The data provided by the material. pub trait Material: WasmNotSend + WasmNotSync + 'static { type DataType: encase::ShaderSize + encase::internal::WriteInto;