From ddc24775b866b0f4c3a4c5b992a42f41318549d8 Mon Sep 17 00:00:00 2001 From: Marc Prud'hommeaux Date: Mon, 3 Jun 2019 08:41:47 -0400 Subject: [PATCH] Fix formatting in documentation for "deadline" parameter. The typo fix at https://github.com/apple/swift-corelibs-libdispatch/commit/a33e4fd965eadd815c4a1b8e8ab80a4cd702d053#diff-8a1894abc995edb93f386d821287e44f did not add the colon after the parameter name. --- src/swift/Queue.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/swift/Queue.swift b/src/swift/Queue.swift index 11b68dc7a..fe7406c42 100644 --- a/src/swift/Queue.swift +++ b/src/swift/Queue.swift @@ -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`. @@ -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`. @@ -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:)` @@ -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:)`