Skip to content

Commit

Permalink
Delete 'or suspended'
Browse files Browse the repository at this point in the history
  • Loading branch information
dfed committed Feb 12, 2023
1 parent f7306d9 commit 56549e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/AsyncQueue/FIFOQueue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public final class FIFOQueue: Sendable {
}

/// Schedules an asynchronous task for execution and immediately returns.
/// The scheduled task will not execute until all prior tasks have completed or suspended.
/// The scheduled task will not execute until all prior tasks have completed.
/// - Parameters:
/// - isolatedActor: The actor within which the task is isolated.
/// - task: The task to enqueue.
Expand All @@ -80,7 +80,7 @@ public final class FIFOQueue: Sendable {
}

/// Schedules an asynchronous task and returns after the task is complete.
/// The scheduled task will not execute until all prior tasks have completed or suspended.
/// The scheduled task will not execute until all prior tasks have completed.
/// - Parameters:
/// - isolatedActor: The actor within which the task is isolated.
/// - task: The task to enqueue.
Expand Down Expand Up @@ -110,7 +110,7 @@ public final class FIFOQueue: Sendable {
}

/// Schedules an asynchronous throwing task and returns after the task is complete.
/// The scheduled task will not execute until all prior tasks have completed or suspended.
/// The scheduled task will not execute until all prior tasks have completed.
/// - Parameters:
/// - isolatedActor: The actor within which the task is isolated.
/// - task: The task to enqueue.
Expand Down

0 comments on commit 56549e2

Please sign in to comment.