diff --git a/Source/Scheduling/Scheduler.cs b/Source/Scheduling/Scheduler.cs index ebf38a7..f81818f 100644 --- a/Source/Scheduling/Scheduler.cs +++ b/Source/Scheduling/Scheduler.cs @@ -374,13 +374,13 @@ namespace Nuclex.Support.Scheduling { } - // Notification processed, move it over to the next priority queue + // Notification processed, move it over to the new priority queue updatedQueue.Enqueue(notification); } } - // Replace the working queue with the update queue + // Replace the working queue with the updated queue this.notifications = updatedQueue; }