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-08 00:35:53 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-08 00:35:53 -0700
commita2be26c8876cd4da4e5966e541ee4fba60024cde (patch)
treebfbf4f8d132bb072a2a62d61feef99afb1b7e565 /cpp/010vm
parent2b7a7498f98d1696adc2c6949f8d53f7fa18109e (diff)
downloadmu-a2be26c8876cd4da4e5966e541ee4fba60024cde.tar.gz
1035
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/010vm b/cpp/010vm
index 5d3ddd53..8d1c71df 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -151,7 +151,7 @@ void setup_recipes() {
 //: Helpers
 
 :(code)
-// indent members to avoid generating prototypes for them
+// indent methods to avoid generating prototypes for them
   instruction::instruction() :is_label(false), operation(IDLE) {}
   void instruction::clear() { is_label=false; label.clear(); operation=IDLE; ingredients.clear(); products.clear(); }