From 35f45b8e5ef580051a6ea18b0883b8d5ede56628 Mon Sep 17 00:00:00 2001 From: Quix <61027486+QuixoticValentine@users.noreply.github.com> Date: Mon, 15 Feb 2021 10:53:07 -0500 Subject: [PATCH] glm: fix typo (#8748) --- vlib/glm/glm.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/glm/glm.v b/vlib/glm/glm.v index 6a4c88b6bd..3263634cdb 100644 --- a/vlib/glm/glm.v +++ b/vlib/glm/glm.v @@ -242,7 +242,7 @@ pub fn scale(m Mat4, v Vec3) Mat4 { return mat4(out) } -// multiplicates two matrices +// multiplies two matrices pub fn mult(a Mat4, b Mat4) Mat4 { mut out := f32_calloc(16) for i in 0 .. 4 {