@@ -58,7 +58,7 @@ public final class FIFOQueue: Sendable {
58
58
59
59
extension Task {
60
60
/// Runs the given nonthrowing operation asynchronously
61
- /// as part of a new top-level task on behalf of the current actor .
61
+ /// as part of a new top-level task that inherits the current isolated context .
62
62
/// The operation will not execute until all prior tasks – including
63
63
/// suspended tasks – have completed.
64
64
///
@@ -108,7 +108,7 @@ extension Task {
108
108
}
109
109
110
110
/// Runs the given throwing operation asynchronously
111
- /// as part of a new top-level task on behalf of the current actor .
111
+ /// as part of a new top-level task that inherits the current isolated context .
112
112
/// The operation will not execute until all prior tasks – including
113
113
/// suspended tasks – have completed.
114
114
///
@@ -162,7 +162,7 @@ extension Task {
162
162
}
163
163
164
164
/// Runs the given nonthrowing operation asynchronously
165
- /// as part of a new top-level task on behalf of the current actor.
165
+ /// as part of a new top-level task isolated to the given actor.
166
166
/// The operation will not execute until all prior tasks – including
167
167
/// suspended tasks – have completed.
168
168
///
@@ -214,7 +214,7 @@ extension Task {
214
214
}
215
215
216
216
/// Runs the given throwing operation asynchronously
217
- /// as part of a new top-level task on behalf of the current actor.
217
+ /// as part of a new top-level task isolated to the given actor.
218
218
/// The operation will not execute until all prior tasks – including
219
219
/// suspended tasks – have completed.
220
220
///
0 commit comments