Skip to content

Commit b09b83c

Browse files
committed
Tweak comment.
1 parent 2b1570e commit b09b83c

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
@@ -140,7 +140,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
140140
/// </remarks>
141141
public DependencyQueueEntry<T>? TryDequeue(Func<T, bool>? predicate = null)
142142
{
143-
const int OneSecond = 1000; //ms
143+
const int OneSecond = 1000; // ms
144144

145145
if (!_isValid)
146146
throw Errors.NotValid();
@@ -208,7 +208,7 @@ public void Enqueue(DependencyQueueEntry<T> entry)
208208
Func<T, bool>? predicate = null,
209209
CancellationToken cancellation = default)
210210
{
211-
const int OneSecond = 1000; //ms
211+
const int OneSecond = 1000; // ms
212212

213213
if (!_isValid)
214214
throw Errors.NotValid();

0 commit comments

Comments
 (0)