about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-16 13:40:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-16 13:56:19 -0700
commit6a218cff3ae7e7d5a77da493d1ba42c6be95a2fc (patch)
tree414bd00f5cf479c93bb622793be28ec5dbda242e
parentc057f5c190bc83abc6ef636989c622ba4def8ec3 (diff)
downloadmu-6a218cff3ae7e7d5a77da493d1ba42c6be95a2fc.tar.gz
3196
-rw-r--r--020run.cc2
-rw-r--r--043space.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/020run.cc b/020run.cc
index ef2833a5..143cc07c 100644
--- a/020run.cc
+++ b/020run.cc
@@ -57,7 +57,7 @@ void run(recipe_ordinal r) {
 }
 
 void run_current_routine()
-{  // curly on a separate line, because later layers will modify header
+{  // curly on a separate line, because later layers will modify function header
   while (!Current_routine->completed())  // later layers will modify condition
   {
     // Running One Instruction
diff --git a/043space.cc b/043space.cc
index a3db4c31..275640cd 100644
--- a/043space.cc
+++ b/043space.cc
@@ -269,7 +269,7 @@ bool should_update_refcounts_in_write_memory(int product_index) {
   if (!contains_key(Recipe, inst.operation)) return true;
   const recipe& caller = get(Recipe, inst.operation);
   if (caller.steps.empty()) return true;
-  // if the recipe deosn't begin with 'local-scope', always update refcounts
+  // if the recipe doesn't begin with 'local-scope', always update refcounts
   return caller.steps.at(0).old_name != "local-scope";
 }