diff --git a/src/Foundatio/Jobs/IQueueJob.cs b/src/Foundatio/Jobs/IQueueJob.cs index 62ea072d..89d7f293 100644 --- a/src/Foundatio/Jobs/IQueueJob.cs +++ b/src/Foundatio/Jobs/IQueueJob.cs @@ -20,8 +20,8 @@ public interface IQueueJob : IJob where T : class public static class QueueJobExtensions { /// - /// Will run wait for the acquire timeout to expire waiting if there are no queued items. It will then run until the queue is empty. - /// NOTE: The acquire timeout will not be reset until after the first job is processed, + /// Will run wait for the wait timeout to expire waiting if there are no queued items. It will then run until the queue is empty. + /// NOTE: The wait timeout will not be reset until after the first job is processed. /// public static async Task RunUntilEmptyAsync(this IQueueJob job, TimeSpan waitTimeout, CancellationToken cancellationToken = default) where T : class