From 903e9c4d7c7e3581742883e271bcbff37ca99861 Mon Sep 17 00:00:00 2001 From: Alex Martini Date: Mon, 3 Nov 2025 14:53:30 -0800 Subject: [PATCH] Refer to checked APIs in CheckedContinuation overview --- stdlib/public/Concurrency/CheckedContinuation.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/public/Concurrency/CheckedContinuation.swift b/stdlib/public/Concurrency/CheckedContinuation.swift index a4f0f1553d050..2873aee15fa3e 100644 --- a/stdlib/public/Concurrency/CheckedContinuation.swift +++ b/stdlib/public/Concurrency/CheckedContinuation.swift @@ -93,8 +93,8 @@ internal final class CheckedContinuationCanary: @unchecked Sendable { /// /// A *continuation* is an opaque representation of program state. /// To create a continuation in asynchronous code, -/// call the `withUnsafeContinuation(function:_:)` or -/// `withUnsafeThrowingContinuation(function:_:)` function. +/// call the `withCheckedContinuation(isolation:function:_:)` or +/// `withCheckedThrowingContinuation(isolation:function:_:)` function. /// To resume the asynchronous task, /// call the `resume(returning:)`, /// `resume(throwing:)`,