Skip to content

Commit

Permalink
Merge pull request #14 from Crusty82/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
kyleconroy committed May 11, 2015
2 parents 0844fbe + a94e355 commit 0d4993f
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 0d4993f

Please sign in to comment.