Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
LUA has only tables.
  • Loading branch information
Crusty82 committed May 11, 2015
1 parent 0844fbe commit a94e355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ local fsm = machine.create({
{ name = 'eat', from = 'hungry', to = 'satisfied' },
{ name = 'eat', from = 'satisfied', to = 'full' },
{ name = 'eat', from = 'full', to = 'sick' },
{ name = 'rest', from = ['hungry', 'satisfied', 'full', 'sick'], to = 'hungry' },
{ name = 'rest', from = {'hungry', 'satisfied', 'full', 'sick'}, to = 'hungry' },
}})
```

Expand Down

0 comments on commit a94e355

Please sign in to comment.