File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -46,14 +46,15 @@ let val: String? = await withIdentifiableContinuation { continuation in
4646
4747## Checked/UnsafeContinuation
4848
49- ` IdentifiableContinuation ` internally stores either a ` CheckedContinuation ` or ` UnsafeContinuation ` .
49+ ` IdentifiableContinuation ` internally stores either a checked or unsafe continuation .
5050
51- ` CheckedContinuation ` is used by the default methods:
51+ [ ` CheckedContinuation ` ] ( https://developer.apple.com/documentation/swift/checkedcontinuation ) is used by the default methods:
5252
5353- ` await withIdentifiableContinuation { .. } `
5454- ` try await withThrowingIdentifiableContinuation { ... } `
5555
56- ` UnsafeContinuation ` is used by the unsafe methods:
56+
57+ [ ` UnsafeContinuation ` ] ( https://developer.apple.com/documentation/swift/unsafecontinuation ) is used by the unsafe methods:
5758
5859- ` await withIdentifiableUnsafeContinuation { .. } `
5960- ` try await withThrowingIdentifiableUnsafeContinuation { ... } `
You can’t perform that action at this time.
0 commit comments