Skip to content

Commit

Permalink
Fix multiple state machines example per class on README
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoVitiello committed Feb 18, 2021
1 parent 6786b2e commit 1f835db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -516,13 +516,13 @@ simple = SimpleMultipleExample.new

simple.aasm(:move).current_state
# => :standing
simple.aasm(:work).current
simple.aasm(:work).current_state
# => :sleeping

simple.start
simple.aasm(:move).current_state
# => :standing
simple.aasm(:work).current
simple.aasm(:work).current_state
# => :processing

```
Expand Down

0 comments on commit 1f835db

Please sign in to comment.