We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0844fbe + a94e355 commit 0d4993fCopy full SHA for 0d4993f
1 file changed
README.md
@@ -67,7 +67,7 @@ local fsm = machine.create({
67
{ name = 'eat', from = 'hungry', to = 'satisfied' },
68
{ name = 'eat', from = 'satisfied', to = 'full' },
69
{ name = 'eat', from = 'full', to = 'sick' },
70
- { name = 'rest', from = ['hungry', 'satisfied', 'full', 'sick'], to = 'hungry' },
+ { name = 'rest', from = {'hungry', 'satisfied', 'full', 'sick'}, to = 'hungry' },
71
}})
72
```
73
0 commit comments