@@ -371,7 +371,7 @@ extension DispatchQueue {
371
371
/// Submits a work item to a dispatch queue for asynchronous execution after
372
372
/// a specified time.
373
373
///
374
- /// - parameter deadline the time after which the work item should be executed,
374
+ /// - parameter deadline: the time after which the work item should be executed,
375
375
/// given as a `DispatchTime`.
376
376
/// - parameter qos: the QoS at which the work item should be executed.
377
377
/// Defaults to `DispatchQoS.unspecified`.
@@ -402,7 +402,7 @@ extension DispatchQueue {
402
402
/// Submits a work item to a dispatch queue for asynchronous execution after
403
403
/// a specified time.
404
404
///
405
- /// - parameter deadline the time after which the work item should be executed,
405
+ /// - parameter deadline: the time after which the work item should be executed,
406
406
/// given as a `DispatchWallTime`.
407
407
/// - parameter qos: the QoS at which the work item should be executed.
408
408
/// Defaults to `DispatchQoS.unspecified`.
@@ -433,7 +433,7 @@ extension DispatchQueue {
433
433
/// Submits a work item to a dispatch queue for asynchronous execution after
434
434
/// a specified time.
435
435
///
436
- /// - parameter deadline the time after which the work item should be executed,
436
+ /// - parameter deadline: the time after which the work item should be executed,
437
437
/// given as a `DispatchTime`.
438
438
/// - parameter execute: The work item to be invoked on the queue.
439
439
/// - SeeAlso: `asyncAfter(deadline:qos:flags:execute:)`
@@ -448,7 +448,7 @@ extension DispatchQueue {
448
448
/// Submits a work item to a dispatch queue for asynchronous execution after
449
449
/// a specified time.
450
450
///
451
- /// - parameter deadline the time after which the work item should be executed,
451
+ /// - parameter deadline: the time after which the work item should be executed,
452
452
/// given as a `DispatchWallTime`.
453
453
/// - parameter execute: The work item to be invoked on the queue.
454
454
/// - SeeAlso: `asyncAfter(wallDeadline:qos:flags:execute:)`
0 commit comments