diff --git a/src/modules/colorPicker/ColorPickerUI/Helpers/IThrottledActionInvoker.cs b/src/modules/colorPicker/ColorPickerUI/Helpers/IThrottledActionInvoker.cs index 6d1860e75d..678b40b3ed 100644 --- a/src/modules/colorPicker/ColorPickerUI/Helpers/IThrottledActionInvoker.cs +++ b/src/modules/colorPicker/ColorPickerUI/Helpers/IThrottledActionInvoker.cs @@ -8,6 +8,6 @@ namespace ColorPicker.Helpers { public interface IThrottledActionInvoker { - void ScheduleAction(Action action, int miliseconds); + void ScheduleAction(Action action, int milliseconds); } } diff --git a/src/modules/colorPicker/ColorPickerUI/Helpers/ThrottledActionInvoker.cs b/src/modules/colorPicker/ColorPickerUI/Helpers/ThrottledActionInvoker.cs index b27386f089..4d8cb8c42f 100644 --- a/src/modules/colorPicker/ColorPickerUI/Helpers/ThrottledActionInvoker.cs +++ b/src/modules/colorPicker/ColorPickerUI/Helpers/ThrottledActionInvoker.cs @@ -21,7 +21,7 @@ namespace ColorPicker.Helpers _timer.Tick += Timer_Tick; } - public void ScheduleAction(Action action, int miliseconds) + public void ScheduleAction(Action action, int milliseconds) { if (_timer.IsEnabled) { @@ -29,7 +29,7 @@ namespace ColorPicker.Helpers } _actionToRun = action; - _timer.Interval = new TimeSpan(0, 0, 0, 0, miliseconds); + _timer.Interval = new TimeSpan(0, 0, 0, 0, milliseconds); _timer.Start(); }