about summary refs log tree commit diff stats
path: root/cpp/021call
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 /cpp/021call
parentf1a6f32323a982f8aa9b8fe757f8d4e2ae4d77db (diff)
downloadmu-ca01193d8b4c564766727bf13b4a4c51db14715a.tar.gz
1052
Diffstat (limited to 'cpp/021call')
-rw-r--r--cpp/021call4
1 files changed, 2 insertions, 2 deletions
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)