diff --git a/FluentAutoClicker/Helpers/AutoClicker.cs b/FluentAutoClicker/Helpers/AutoClicker.cs index e099d13..c296b4c 100644 --- a/FluentAutoClicker/Helpers/AutoClicker.cs +++ b/FluentAutoClicker/Helpers/AutoClicker.cs @@ -62,7 +62,7 @@ private static async void AutoClickerThread(int clickInterval, int repeatAmount, while (_isAutoClickerRunning) { - // Stop if we click more than repeat amount. + // Stop if we click more than repeat amount if (clickCount >= repeatAmount && repeatAmount != 0) { Stop(); @@ -119,4 +119,4 @@ private static void SendMouseInput(MOUSE_EVENT_FLAGS dwFlags) _ = PInvoke.SendInput(inputs, Marshal.SizeOf()); } -} \ No newline at end of file +}