Fix typo in FAQ

This commit is contained in:
Sam Caldwell 2015-09-22 14:46:14 -04:00
parent 233e536347
commit ecb42dbbe3
1 changed files with 1 additions and 1 deletions

2
FAQ.md
View File

@ -61,7 +61,7 @@
* How do I create a process/actor?
```racket
;; single actor
(spawn (lambda (event state) ... (transaction state' (list action ...)))
(spawn (lambda (event state) ... (transition state' (list action ...)))
initial-state
initial-action ...)
;; network of actors