about summary refs log tree commit diff stats
path: root/cpp/020call
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-16 20:26:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-16 20:26:59 -0700
commit3c435756bcd997dac981ca78c49c5100eb2211b7 (patch)
tree05524418c430239992558e5b5a82ddbdf133c60d /cpp/020call
parentb589f25a005ad00f6fd888520f9eaaddbd707617 (diff)
downloadmu-3c435756bcd997dac981ca78c49c5100eb2211b7.tar.gz
932 - clean up comments in the tangled c++
Diffstat (limited to 'cpp/020call')
-rw-r--r--cpp/020call3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/020call b/cpp/020call
index f926a100..8efee27c 100644
--- a/cpp/020call
+++ b/cpp/020call
@@ -1,4 +1,4 @@
-// So far the recipes we define can't run each other. Let's change that.
+//: So far the recipes we define can't run each other. Let's change that.
 :(scenario "calling_recipe")
 recipe main [
   f
@@ -27,6 +27,7 @@ struct routine {
     calls.push(call(r));
   }
 };
+//: 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;