From 010af6a11adbdf23f4f8b3fd1f4e45575c549310 Mon Sep 17 00:00:00 2001 From: Ben Rimmington Date: Fri, 23 Sep 2022 11:31:44 +0100 Subject: [PATCH 1/2] [BackDeployConcurrency] Update documentation --- stdlib/public/BackDeployConcurrency/Task.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/public/BackDeployConcurrency/Task.swift b/stdlib/public/BackDeployConcurrency/Task.swift index fe421c65159f9..f40d7fb77d449 100644 --- a/stdlib/public/BackDeployConcurrency/Task.swift +++ b/stdlib/public/BackDeployConcurrency/Task.swift @@ -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]. From b1962a98ca204a6d7a7238ed90ff3e200e27c516 Mon Sep 17 00:00:00 2001 From: Ben Rimmington Date: Fri, 23 Sep 2022 11:32:44 +0100 Subject: [PATCH 2/2] [Concurrency] Update documentation --- stdlib/public/Concurrency/Task.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/public/Concurrency/Task.swift b/stdlib/public/Concurrency/Task.swift index bcf39223f5c3e..c0280e11fd21c 100644 --- a/stdlib/public/Concurrency/Task.swift +++ b/stdlib/public/Concurrency/Task.swift @@ -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].