Skip to content

Commit 087a2fa

Browse files
committed
actor-model.mdx: more links
1 parent e38cc79 commit 087a2fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/actor-model.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ So even for simple web apps, with small app-specific state and a few known app-s
6262
## XState
6363

6464
Actors in XState can:
65-
- **Accept messages** as events sent by actions like `raise` or `sendTo` in a machine, or from outside via `actor.send`.
6665
- **Create more actors** using the `spawn` action in a machine.
67-
- **Send more messages** as events using the `sendTo` action in a machine, or `self.send` in their own logic.
66+
- **Accept messages** as [events](transitions.mdx) sent by [action creators](actions.mdx) like [`raise`](actions#raise-action) or [`sendTo`](actions#send-to-action) in a machine, or from outside via `actor.send`.
67+
- **Send more messages** as events using the [`sendTo`](actions.mdx#send-to-action) action creator in a machine, or `self.send` in their own logic.
6868

6969
Actors in XState have their own [actor logic](actors.mdx#actor-logic) which they use to:
7070
- **Make local decisions**

0 commit comments

Comments
 (0)