Skip to content

Commit aad418d

Browse files
authored
Update README.md
1 parent 1aec373 commit aad418d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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 { ... }`

0 commit comments

Comments
 (0)