Skip to content

Commit 2676e26

Browse files
committed
Fix typo; add missing word.
1 parent 6261ee2 commit 2676e26

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

stdlib/public/Concurrency/CheckedContinuation.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ extension CheckedContinuation {
256256
///
257257
/// The body of the closure executes synchronously on the calling task, and once it returns
258258
/// 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.
260260
///
261261
/// You must invoke the continuation's `resume` method exactly once.
262262
///
@@ -294,7 +294,7 @@ public func withCheckedContinuation<T>(
294294
///
295295
/// The body of the closure executes synchronously on the calling task, and once it returns
296296
/// 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.
298298
///
299299
/// If `resume(throwing:)` is called on the continuation, this function throws that error.
300300
///

stdlib/public/Concurrency/PartialAsyncTask.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ internal func _resumeUnsafeThrowingContinuationWithError<T>(
543543
///
544544
/// The body of the closure executes synchronously on the calling task, and once it returns
545545
/// 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.
547547
///
548548
/// You must invoke the continuation's `resume` method exactly once.
549549
///
@@ -577,7 +577,7 @@ public func withUnsafeContinuation<T>(
577577
///
578578
/// The body of the closure executes synchronously on the calling task, and once it returns
579579
/// 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.
581581
///
582582
/// If `resume(throwing:)` is called on the continuation, this function throws that error.
583583
///

0 commit comments

Comments
 (0)