From 1afb3abb742110badd2ea7347063af9ca2bc132b Mon Sep 17 00:00:00 2001 From: Periapsises <94928308+Periapsises@users.noreply.github.com> Date: Sun, 23 Jun 2024 22:28:33 -0400 Subject: [PATCH] Fix duplicate argument name in Color div function (#1779) --- lua/starfall/libs_sh/color.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/starfall/libs_sh/color.lua b/lua/starfall/libs_sh/color.lua index 9d1052d21..0974a8def 100644 --- a/lua/starfall/libs_sh/color.lua +++ b/lua/starfall/libs_sh/color.lua @@ -171,7 +171,7 @@ function color_meta.__mul(a, b) end --- Division metamethod --- @param number|Color b Number or Color dividend +-- @param number|Color a Number or Color dividend -- @param number|Color b Number or Color divisor -- @return Color Scaled color. function color_meta.__div(a, b)