Skip to content

Commit 70cd2d8

Browse files
committed
Fix a typo in a code example.
1 parent 4cbb121 commit 70cd2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/NNNN-async-function-isolation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ func useAsValue(_ ns: NotSendable) async { ... }
244244
@MainActor let global: NotSendable = .init()
245245

246246
@MainActor
247-
func callSendableClosure(closure: @Sendable (NotSendable) async -> Void) {
247+
func callSendableClosure(closure: @Sendable (NotSendable) async -> Void) async {
248248
let ns = NotSendable()
249249
await closure(ns) // okay
250250

0 commit comments

Comments
 (0)