about summary refs log tree commit diff stats
path: root/cpp/035call
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/035call')
-rw-r--r--cpp/035call6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/035call b/cpp/035call
index 21d07b18..efb4a2a7 100644
--- a/cpp/035call
+++ b/cpp/035call
@@ -31,7 +31,9 @@ struct routine {
   routine::routine(recipe_number r) {
     calls.push(call(r));
   }
-//: now update routine's helpers
+
+//:: now update routine's helpers
+
 :(replace{} "inline size_t& running_at(routine& rr)")
 inline size_t& running_at(routine& rr) {
   return rr.calls.top().pc;
@@ -56,7 +58,7 @@ default: {
   continue;  // not done with caller; don't increment pc
 }
 
-//: finally, we need to fix the termination conditions for the run loop
+//:: finally, we need to fix the termination conditions for the run loop
 
 :(replace{} "inline bool done(routine& rr)")
 inline bool done(routine& rr) {