From e045572f607feaa61b08b375fbf2c1e57bda09fa Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 18 May 2025 10:18:39 +0200 Subject: [PATCH] Enhance C_Timer documentation by adding optional repetitions parameter to NewTimer function --- C_Timer.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C_Timer.lua b/C_Timer.lua index c7aa3c9..3a4b240 100644 --- a/C_Timer.lua +++ b/C_Timer.lua @@ -14,8 +14,9 @@ C_Timer = { ---Schedules a timer that can be canceled. ---@param seconds number ---@param callback function + ---@param repetitions number? ---@return Timer - NewTimer = function(seconds, callback) end, + NewTimer = function(seconds, callback, repetitions) end, ---Schedules a repeating timer that can be canceled. ---@param seconds number