From 53a3d0c7de31a535320c443322a7052199b6fd58 Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Sat, 30 Apr 2022 11:27:50 -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 54dcdd9..e8c7b28 100644 --- a/modules/vec3.lua +++ b/modules/vec3.lua @@ -120,7 +120,7 @@ function vec3.mul(a, b) ) end ---- Divide a vector by a scalar. +--- Divide a vector by another. -- Component-wise inv multiplication. Like a non-uniform scale(). -- @tparam vec3 a Left hand operand -- @tparam vec3 b Right hand operand