From f0bb14524b2adaa80938a61cf5551825eb6732ef Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 3 Oct 2023 10:26:35 -0700 Subject: [PATCH] cleanup --- src/math/mat.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/mat.zig b/src/math/mat.zig index 219dc00a..94fe28a2 100644 --- a/src/math/mat.zig +++ b/src/math/mat.zig @@ -360,7 +360,7 @@ pub fn Mat( return result; } - /// Matrix - Vector multiplicatino: Mat * Vec + /// Matrix * Vector multiplication pub inline fn mulVec(a: *const Matrix, b: *const ColVec) ColVec { var result = [_]ColVec.T{0}**ColVec.n; inline for (0..Matrix.rows) |row| {