From 6c7c929c38bc2b54aef1bed03fc8c22804eb9f8f Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Sat, 30 Apr 2022 11:31:54 -0700 Subject: [PATCH] fix doc typo --- modules/vec3.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/vec3.lua b/modules/vec3.lua index e8c7b28..b653506 100644 --- a/modules/vec3.lua +++ b/modules/vec3.lua @@ -107,7 +107,7 @@ function vec3.sub(a, b) ) end ---- Multiply a vector by another vectorr. +--- Multiply a vector by another vector. -- Component-wise multiplication not matrix multiplication. -- @tparam vec3 a Left hand operand -- @tparam vec3 b Right hand operand