Skip to content

Commit d4dc2c9

Browse files
committed
Doc tweaks
1 parent 1d057e3 commit d4dc2c9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

readme.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ machine.current; // "Off"
7979

8080
- Generator Functions are a built-in feature of JavaScript and TypeScript.
8181
- They have built-in syntax highlighting, autocompletion, and general rich language support in editors like Visual Studio Code.
82-
- Our states are represented by actual JavaScript functions. This means if we pass a state that’s either spelled incorrectly or isn’t in scope, our editor will tell us.
83-
- Generator Functions can be reused, composed, and partially applied like any function. This increases the modularity and reuse of our machine parts.
84-
- Our states use the name of the function.
82+
- Our states are represented by actual JavaScript functions.
83+
- This means if we pass a state that’s either spelled incorrectly or isn’t in scope, our editor will tell us.
84+
- Our states use the name of the function.
85+
- Generator Functions can be reused, composed, and partially applied like any function. This increases the modularity and reuse of our machine parts.
8586
- Coming soon: our machine definitions can be serialized and deserialized. This means they could be generated on a back-end and sent to the front-end. They could be stored away in a database. They could even be generated dynamically on the fly.
8687

8788
## Documentation

0 commit comments

Comments
 (0)