Skip to content

Commit 3ad1e00

Browse files
committed
Fix typo.
1 parent 57746df commit 3ad1e00

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DependencyQueue/DependencyQueue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
159159

160160
// Check if the ready queue has an entry to dequeue
161161
if (_ready.Any())
162-
// Check if caller accepts teh entry
162+
// Check if caller accepts the entry
163163
if (predicate is null || predicate(_ready.Peek().Value))
164164
// Dequeue it
165165
return _ready.Dequeue();
@@ -228,7 +228,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
228228

229229
// Check if the ready queue has an entry to dequeue
230230
if (_ready.Any())
231-
// Check if caller accepts teh entry
231+
// Check if caller accepts the entry
232232
if (predicate is null || predicate(_ready.Peek().Value))
233233
// Dequeue it
234234
return _ready.Dequeue();

0 commit comments

Comments
 (0)