about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--048call_variable.cc2
-rw-r--r--049continuation.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/048call_variable.cc b/048call_variable.cc
index 1ae98ddd..9514ed95 100644
--- a/048call_variable.cc
+++ b/048call_variable.cc
@@ -39,6 +39,6 @@ case CALL: {
     r = Recipe_number[current_instruction().ingredients.at(0).name];
   }
   Current_routine->calls.push_front(call(r));
-  ingredients.erase(ingredients.begin());  // drop the function
+  ingredients.erase(ingredients.begin());  // drop the callee
   goto complete_call;
 }
diff --git a/049continuation.cc b/049continuation.cc
index 2c714384..26b605bb 100644
--- a/049continuation.cc
+++ b/049continuation.cc
@@ -171,7 +171,7 @@ Recipe_number["create-delimited-continuation"] = CREATE_DELIMITED_CONTINUATION;
 case CREATE_DELIMITED_CONTINUATION: {
   Current_routine->calls.front().is_reset = true;
   Current_routine->calls.push_front(call(Recipe_number[current_instruction().ingredients.at(0).name]));
-  ingredients.erase(ingredients.begin());  // drop the function
+  ingredients.erase(ingredients.begin());  // drop the callee
   goto complete_call;
 }
 
@@ -230,6 +230,6 @@ call_stack::iterator find_reset(call_stack& c) {
     for (call_stack::const_reverse_iterator p = new_calls.rbegin(); p != new_calls.rend(); ++p)
       Current_routine->calls.push_front(*p);
     ++current_step_index();  // skip past the reply-delimited-continuation
-    ingredients.erase(ingredients.begin());  // drop the function
+    ingredients.erase(ingredients.begin());  // drop the callee
     goto complete_call;
   }