about summary refs log tree commit diff stats
path: root/028call_return.cc
diff options
context:
space:
mode:
Diffstat (limited to '028call_return.cc')
-rw-r--r--028call_return.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/028call_return.cc b/028call_return.cc
index 0227acee..d77e1fa7 100644
--- a/028call_return.cc
+++ b/028call_return.cc
@@ -35,7 +35,7 @@ case RETURN: {
 }
 :(before "End Primitive Recipe Implementations")
 case RETURN: {
-  // Starting Reply
+  // Begin Return
   if (Trace_stream) {
     trace(9999, "trace") << current_instruction().name << ": decrementing callstack depth from " << Trace_stream->callstack_depth << end();
     --Trace_stream->callstack_depth;
@@ -51,7 +51,7 @@ case RETURN: {
     trace(9998, "run") << "result " << i << " is " << to_string(ingredients.at(i)) << end();
   // make return products available to caller
   copy(ingredients.begin(), ingredients.end(), inserter(products, products.begin()));
-  // End Reply
+  // End Return
   break;  // continue to process rest of *caller* instruction
 }