about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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";
 }