You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stdlib/public/Concurrency/Task.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ import Swift
128
128
///
129
129
/// Note that there is nothing, other than the Task's use of `self` retaining the actor,
130
130
/// And that the start method immediately returns, without waiting for the unstructured `Task` to finish.
131
-
/// So once the task completes and its the closure is destroyed, the strong reference to the "self" of the actor is also released allowing the actor to deinitialize as expected.
131
+
/// So once the task is completed and its closure is destroyed, the strong reference to the "self" of the actor is also released allowing the actor to deinitialize as expected.
132
132
///
133
133
/// Therefore, the above call will consistently result in the following output:
0 commit comments