summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2019-05-28 20:15:38 -0500
committerPaul McGuire <ptmcg@austin.rr.com>2019-05-28 20:15:38 -0500
commit7dc2374df79b3e02d0d17d3eda07848b0121765f (patch)
tree2db40d9082b73a57219c657d33a823f672ee43d6
parentc7b74ff2e03192c5f8aadd7f5007a4fdb5748672 (diff)
downloadpyparsing-git-7dc2374df79b3e02d0d17d3eda07848b0121765f.tar.gz
Fix description in module header
-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