File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
stdlib/public/Concurrency Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ extension CheckedContinuation {
256
256
///
257
257
/// The body of the closure executes synchronously on the calling task, and once it returns
258
258
/// the calling task is suspended. It is possible to immediately resume the task, or escape the
259
- /// continuation in order to complete it afterwards, which will them resume suspended task.
259
+ /// continuation in order to complete it afterwards, which will then resume the suspended task.
260
260
///
261
261
/// You must invoke the continuation's `resume` method exactly once.
262
262
///
@@ -294,7 +294,7 @@ public func withCheckedContinuation<T>(
294
294
///
295
295
/// The body of the closure executes synchronously on the calling task, and once it returns
296
296
/// the calling task is suspended. It is possible to immediately resume the task, or escape the
297
- /// continuation in order to complete it afterwards, which will them resume suspended task.
297
+ /// continuation in order to complete it afterwards, which will then resume the suspended task.
298
298
///
299
299
/// If `resume(throwing:)` is called on the continuation, this function throws that error.
300
300
///
Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ internal func _resumeUnsafeThrowingContinuationWithError<T>(
543
543
///
544
544
/// The body of the closure executes synchronously on the calling task, and once it returns
545
545
/// the calling task is suspended. It is possible to immediately resume the task, or escape the
546
- /// continuation in order to complete it afterwards, which will them resume suspended task.
546
+ /// continuation in order to complete it afterwards, which will then resume the suspended task.
547
547
///
548
548
/// You must invoke the continuation's `resume` method exactly once.
549
549
///
@@ -577,7 +577,7 @@ public func withUnsafeContinuation<T>(
577
577
///
578
578
/// The body of the closure executes synchronously on the calling task, and once it returns
579
579
/// the calling task is suspended. It is possible to immediately resume the task, or escape the
580
- /// continuation in order to complete it afterwards, which will them resume suspended task.
580
+ /// continuation in order to complete it afterwards, which will then resume the suspended task.
581
581
///
582
582
/// If `resume(throwing:)` is called on the continuation, this function throws that error.
583
583
///
You can’t perform that action at this time.
0 commit comments