diff --git a/Source/Scheduling/Scheduler.cs b/Source/Scheduling/Scheduler.cs index f81818f..781c8e3 100644 --- a/Source/Scheduling/Scheduler.cs +++ b/Source/Scheduling/Scheduler.cs @@ -136,7 +136,7 @@ namespace Nuclex.Support.Scheduling { public Scheduler() : this(DefaultTimeSource) { } /// Initializes a new scheduler using the specified time source - /// Source source the scheduler will use + /// Time source the scheduler will use public Scheduler(ITimeSource timeSource) { this.dateTimeAdjustedDelegate = new EventHandler(dateTimeAdjusted); @@ -394,7 +394,7 @@ namespace Nuclex.Support.Scheduling { lock(this.timerThread) { this.notifications.Enqueue(notification); - // If this notification has become that next due notification, wake up + // If this notification has become the next due notification, wake up // the timer thread so it can adjust its sleep period. if(ReferenceEquals(this.notifications.Peek(), notification)) { this.notificationWaitEvent.Set();