summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/statemachine/vending_machine.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/statemachine/vending_machine.py b/examples/statemachine/vending_machine.py
index 79158e5..f48d2f9 100644
--- a/examples/statemachine/vending_machine.py
+++ b/examples/statemachine/vending_machine.py
@@ -3,7 +3,9 @@
#
# Example of using the statemachine parser without importing a .pystate module.
#
-# A vending machine that
+# A vending machine that dispenses candy and chips in a 4x4 grid, A1 thru D4.
+# To dispense a product, you must press an alpha button, then a digit button.
+#
import statemachine