From a2c3c85161f25b9aa671df2abb5fd20e7ab04a42 Mon Sep 17 00:00:00 2001 From: Mira <56395159+TheXorog@users.noreply.github.com> Date: Tue, 1 Nov 2022 12:08:15 +0100 Subject: [PATCH] Update UniversalExtensions.cs --- UniversalExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UniversalExtensions.cs b/UniversalExtensions.cs index 9b239da..8af4d8f 100644 --- a/UniversalExtensions.cs +++ b/UniversalExtensions.cs @@ -339,7 +339,7 @@ public static class UniversalExtensions public static void DeleteScheduleTask(string UID) { if (!registeredScheduledTasks.ContainsKey(UID)) - throw new Exception($"No sheduled task has been found with UID '{UID}'"); + throw new Exception($"No scheduled task has been found with UID '{UID}'"); if (registeredScheduledTasks[ UID ].tokenSource is null) throw new Exception($"Internal: There is no token source registered the specified task.");