Skip to content

Commit 5395d62

Browse files
committed
Additional editorial fixes.
For rdar://77331481
1 parent c3cb8be commit 5395d62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/Concurrency/CheckedContinuation.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ extension CheckedContinuation {
259259
/// source for the continuation, used to identify the continuation in
260260
/// runtime diagnostics related to misuse of this continuation.
261261
/// - body: A closure that takes an `UnsafeContinuation` parameter.
262-
/// The closure must resume the continuation *exactly once*.
262+
/// The closure must resume the continuation exactly once.
263263
@available(SwiftStdlib 5.5, *)
264264
public func withCheckedContinuation<T>(
265265
function: String = #function,
@@ -273,11 +273,11 @@ public func withCheckedContinuation<T>(
273273
/// Calls the given throwing closure with a checked continuation.
274274
///
275275
/// - Parameters:
276-
/// - function: a string identifying the declaration that is the notional
276+
/// - function: A string identifying the declaration that is the notional
277277
/// source for the continuation, used to identify the continuation in
278278
/// runtime diagnostics related to misuse of this continuation.
279279
/// - body: A closure that takes an `UnsafeContinuation` parameter.
280-
/// The closure must resume the continuation *exactly once*.
280+
/// The closure must resume the continuation exactly once.
281281
///
282282
/// If the closure throws an error,
283283
/// this function rethrows that error.

0 commit comments

Comments
 (0)