We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b1570e commit b09b83cCopy full SHA for b09b83c
1 file changed
DependencyQueue/DependencyQueue.cs
@@ -140,7 +140,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
140
/// </remarks>
141
public DependencyQueueEntry<T>? TryDequeue(Func<T, bool>? predicate = null)
142
{
143
- const int OneSecond = 1000; //ms
+ const int OneSecond = 1000; // ms
144
145
if (!_isValid)
146
throw Errors.NotValid();
@@ -208,7 +208,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
208
Func<T, bool>? predicate = null,
209
CancellationToken cancellation = default)
210
211
212
213
214
0 commit comments