From 4164331b8e991272a645f8692e67f25d16d3fa9a Mon Sep 17 00:00:00 2001 From: matt rice Date: Wed, 28 Feb 2024 12:56:47 -0800 Subject: [PATCH] Fix minor doc typos --- 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;