Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/swift/Queue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ extension DispatchQueue {
/// Submits a work item to a dispatch queue for asynchronous execution after
/// a specified time.
///
/// - parameter deadline the time after which the work item should be executed,
/// - parameter deadline: the time after which the work item should be executed,
/// given as a `DispatchTime`.
/// - parameter qos: the QoS at which the work item should be executed.
/// Defaults to `DispatchQoS.unspecified`.
Expand Down Expand Up @@ -402,7 +402,7 @@ extension DispatchQueue {
/// Submits a work item to a dispatch queue for asynchronous execution after
/// a specified time.
///
/// - parameter deadline the time after which the work item should be executed,
/// - parameter deadline: the time after which the work item should be executed,
/// given as a `DispatchWallTime`.
/// - parameter qos: the QoS at which the work item should be executed.
/// Defaults to `DispatchQoS.unspecified`.
Expand Down Expand Up @@ -433,7 +433,7 @@ extension DispatchQueue {
/// Submits a work item to a dispatch queue for asynchronous execution after
/// a specified time.
///
/// - parameter deadline the time after which the work item should be executed,
/// - parameter deadline: the time after which the work item should be executed,
/// given as a `DispatchTime`.
/// - parameter execute: The work item to be invoked on the queue.
/// - SeeAlso: `asyncAfter(deadline:qos:flags:execute:)`
Expand All @@ -448,7 +448,7 @@ extension DispatchQueue {
/// Submits a work item to a dispatch queue for asynchronous execution after
/// a specified time.
///
/// - parameter deadline the time after which the work item should be executed,
/// - parameter deadline: the time after which the work item should be executed,
/// given as a `DispatchWallTime`.
/// - parameter execute: The work item to be invoked on the queue.
/// - SeeAlso: `asyncAfter(wallDeadline:qos:flags:execute:)`
Expand Down