Skip to content

Fix formatting in documentation for "deadline" parameter. #491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 7, 2019
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