about summary refs log tree commit diff stats
path: root/cpp/010vm
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 16:52:22 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 16:52:22 -0700
commit544a1f1e17d909673f08a50b97fc9d00df431eb4 (patch)
tree55f5e911b8b9f2d30ca2e8b0ccad43fdadae0713 /cpp/010vm
parentd253de9f309cec128fdd42785664cc730eb9898d (diff)
downloadmu-544a1f1e17d909673f08a50b97fc9d00df431eb4.tar.gz
1165
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/010vm b/cpp/010vm
index d6f6e5a9..76d41a71 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -18,8 +18,8 @@ struct recipe {
 :(before "struct recipe")
 // Each instruction is either of the form:
 //   product1, product2, product3, ... <- operation ingredient1, ingredient2, ingredient3, ...
-// or just a single 'label' followed by a colon
-//   label:
+// or just a single 'label' starting with a non-alphanumeric character
+//   +label
 // Labels don't do anything, they're just waypoints.
 struct instruction {
   bool is_label;