Skip to content

[Concurrency] Update documentation #61264

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions stdlib/public/BackDeployConcurrency/Task.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ import Swift
/// A task's execution can be seen as a series of periods where the task ran.
/// Each such period ends at a suspension point or the
/// completion of the task.
/// These periods of execution are represented by instances of `PartialAsyncTask`.
/// These periods of execution are represented by instances of `UnownedJob`.
/// Unless you're implementing a custom executor,
/// you don't directly interact with partial tasks.
/// you don't directly interact with jobs.
///
/// For information about the language-level concurrency model that `Task` is part of,
/// see [Concurrency][concurrency] in [The Swift Programming Language][tspl].
Expand Down
4 changes: 2 additions & 2 deletions stdlib/public/Concurrency/Task.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ import Swift
/// A task's execution can be seen as a series of periods where the task ran.
/// Each such period ends at a suspension point or the
/// completion of the task.
/// These periods of execution are represented by instances of `PartialAsyncTask`.
/// These periods of execution are represented by instances of `UnownedJob`.
/// Unless you're implementing a custom executor,
/// you don't directly interact with partial tasks.
/// you don't directly interact with jobs.
///
/// For information about the language-level concurrency model that `Task` is part of,
/// see [Concurrency][concurrency] in [The Swift Programming Language][tspl].
Expand Down