glm: fix typo (#8748)

pull/8771/head
Quix 2021-02-15 10:53:07 -05:00 committed by GitHub
parent 49505d4090
commit 35f45b8e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {