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 01:15:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-08 01:15:41 -0700
commit286d762019a217231f5969e03b4a519a2eab447e (patch)
treeee7b70990c46f4d1af46d08eeef6ac5baf0a1b04 /cpp/010vm
parent96f19e1e57c9d8508c7003aa4de4a87d0c7239c3 (diff)
downloadmu-286d762019a217231f5969e03b4a519a2eab447e.tar.gz
1039
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/010vm b/cpp/010vm
index aa75c6ae..826c2069 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -135,7 +135,8 @@ void setup_recipes() {
 }
 //: We could just reset the recipe table after every test, but that gets slow
 //: all too quickly. Instead, initialize the common stuff just once at
-//: startup, and carefully undo each test's additions after itself.
+//: startup. Later layers will carefully undo each test's additions after
+//: itself.
 :(before "End One-time Setup")
   setup_recipes();
   // End Load Recipes