Skip to content

Commit 9c8adcd

Browse files
authoredApr 19, 2023
correct the mark mistake. (apple#1116)
1 parent 3c8a647 commit 9c8adcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Sources/DistributedCluster/Docs.docc/Introduction.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,16 @@ func test(lo: LocalGreeter, di: DistributedGreeter) async throws {
118118

119119
// "local only" actor
120120
_ = lo.name // <1.1> ok
121-
await lo.hello("Caplin") // <2.2> ok
121+
await lo.hello("Caplin") // <1.2> ok
122122

123123
// distributed actor
124-
di.name // ❌ <1.2> error: access to property 'name' is only permitted within distributed actor
124+
di.name // ❌ <2.1> error: access to property 'name' is only permitted within distributed actor
125125
try await di.notDistributedHello() // ❌ <2.2> error: only `distributed func` can be called on potentially remote distributed actor
126126
try await di.hello() // ok
127127
}
128128
```
129129

130-
We can see that accesses `<1.1>`, to a stored constant property, and `<2.1>` to a member function, were allowed under the
130+
We can see that accesses `<1.1>`, to a stored constant property, and `<1.2>` to a member function, were allowed under the
131131
`actor`-isolation model, however are not permitted when the target of those is a `distributed actor` (`<2.1>` and `<2.2>`).
132132
This is because a distributed actor may be located on a remote host, and we are not able to implement such calls for
133133
not-distributed functions. Distributed members guarantee that all their parameters and return values conform to the actor system's

0 commit comments

Comments
 (0)
Please sign in to comment.