about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-12 20:56:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-12 20:56:45 -0700
commitca01193d8b4c564766727bf13b4a4c51db14715a (patch)
tree0445740d110b637b31ec846beb6998cf4644f9f2
parentf1a6f32323a982f8aa9b8fe757f8d4e2ae4d77db (diff)
downloadmu-ca01193d8b4c564766727bf13b4a4c51db14715a.tar.gz
1052
-rw-r--r--cpp/010vm2
-rw-r--r--cpp/012transform2
-rw-r--r--cpp/021call4
-rw-r--r--cpp/022call_ingredient2
-rw-r--r--cpp/026new2
-rw-r--r--cpp/027space2
6 files changed, 7 insertions, 7 deletions
diff --git a/cpp/010vm b/cpp/010vm
index d6eead5e..54fc8906 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -12,7 +12,7 @@ int Next_recipe_number = 1;
 struct recipe {
   string name;
   vector<instruction> steps;
-  // End Recipe Fields
+  // End recipe Fields
 };
 
 :(before "struct recipe")
diff --git a/cpp/012transform b/cpp/012transform
index 7fa979c7..bb61c6e0 100644
--- a/cpp/012transform
+++ b/cpp/012transform
@@ -4,7 +4,7 @@
 //: The hope is that this framework of transform tools will provide a
 //: deconstructed alternative to conventional compilers.
 
-:(before "End Recipe Fields")
+:(before "End recipe Fields")
 size_t transformed_until;
   recipe() :transformed_until(-1) {}
 
diff --git a/cpp/021call b/cpp/021call
index a2379219..3683db12 100644
--- a/cpp/021call
+++ b/cpp/021call
@@ -15,7 +15,7 @@ recipe f [
 struct call {
   recipe_number running_recipe;
   size_t pc;
-  // End Call Fields
+  // End call Fields
   call(recipe_number r) :running_recipe(r), pc(0) {}
 };
 typedef stack<call> call_stack;
@@ -23,7 +23,7 @@ typedef stack<call> call_stack;
 :(replace{} "struct routine")
 struct routine {
   call_stack calls;
-  // End Routine Fields
+  // End routine Fields
   routine(recipe_number r);
 };
 :(code)
diff --git a/cpp/022call_ingredient b/cpp/022call_ingredient
index 3736177a..963c5fe8 100644
--- a/cpp/022call_ingredient
+++ b/cpp/022call_ingredient
@@ -12,7 +12,7 @@ recipe f [
 +mem: location 12 is 2
 +mem: storing 3 in location 13
 
-:(before "End Call Fields")
+:(before "End call Fields")
 vector<vector<int> > ingredient_atoms;
 size_t next_ingredient_to_process;
 :(replace{} "call(recipe_number r)")
diff --git a/cpp/026new b/cpp/026new
index 69dfe8c7..2bef48e7 100644
--- a/cpp/026new
+++ b/cpp/026new
@@ -12,7 +12,7 @@ recipe main [
 
 :(before "End Globals")
 const size_t Alloc_init = 1000;
-:(before "End Routine Fields")
+:(before "End routine Fields")
 size_t alloc;
 :(replace{} "routine::routine(recipe_number r)")
   routine::routine(recipe_number r) :alloc(Alloc_init) {
diff --git a/cpp/027space b/cpp/027space
index fed15bf6..7794db23 100644
--- a/cpp/027space
+++ b/cpp/027space
@@ -26,7 +26,7 @@ recipe main [
 ]
 +mem: storing 34 in location 8
 
-:(before "End Call Fields")
+:(before "End call Fields")
 size_t default_space;
 :(replace "call(recipe_number r) :running_recipe(r)")
 call(recipe_number r) :running_recipe(r), pc(0), next_ingredient_to_process(0), default_space(0) {}