File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ it can be passed an arbitrary function and work with arbitrary types.
116
116
But if it's called from an * isolated* asynchronous function, Swift will
117
117
treat the call as crossing an isolation barrier and enforce three restrictions:
118
118
119
- - First, the result of the call must be ` Sendbale ` . This restriction prevents
119
+ - First, the result of the call must be ` Sendable ` . This restriction prevents
120
120
` next() ` from being used from an actor to produce non-` Sendable ` element
121
121
values.
122
122
@@ -250,7 +250,7 @@ extension DistributedActor {
250
250
/// as only a local distributed actor can be isolated on and may be automatically
251
251
/// erased to such `any Actor` when calling methods implicitly accepting the
252
252
/// caller's actor isolation, e.g. by using the `#isolation` macro.
253
- @backDeployed (before: SwiftStdlib 5.11 )
253
+ @backDeployed (before: SwiftStdlib 6.0 )
254
254
public var asLocalActor: any Actor {
255
255
}
256
256
```
You can’t perform that action at this time.
0 commit comments