We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57746df commit 3ad1e00Copy full SHA for 3ad1e00
1 file changed
DependencyQueue/DependencyQueue.cs
@@ -159,7 +159,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
159
160
// Check if the ready queue has an entry to dequeue
161
if (_ready.Any())
162
- // Check if caller accepts teh entry
+ // Check if caller accepts the entry
163
if (predicate is null || predicate(_ready.Peek().Value))
164
// Dequeue it
165
return _ready.Dequeue();
@@ -228,7 +228,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
228
229
230
231
232
233
234
0 commit comments