about summary refs log tree commit diff stats
path: root/cpp/021call
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-12 20:47:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-12 20:48:05 -0700
commitf1a6f32323a982f8aa9b8fe757f8d4e2ae4d77db (patch)
tree731297f5a113721aafc043a5315e814680294cba /cpp/021call
parent39f77cc54ea08cd1feac8796aaa617d00a35f835 (diff)
downloadmu-f1a6f32323a982f8aa9b8fe757f8d4e2ae4d77db.tar.gz
1051
Diffstat (limited to 'cpp/021call')
-rw-r--r--cpp/021call4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/021call b/cpp/021call
index d84912c2..a2379219 100644
--- a/cpp/021call
+++ b/cpp/021call
@@ -44,7 +44,7 @@ inline vector<instruction>& steps(routine& rr) {
   return Recipe[rr.calls.top().running_recipe].steps;
 }
 
-:(replace{} "default:" following "End Primitive Recipe Implementations.")
+:(replace{} "default:" following "End Primitive Recipe Implementations")
 default: {
   // not a primitive; try to look for a matching recipe
   if (Recipe.find(instructions[pc].operation) == Recipe.end()) {
@@ -62,7 +62,7 @@ inline bool done(routine& rr) {
   return rr.calls.empty();
 }
 
-:(before "Running one instruction.")
+:(before "Running one instruction")
 // when we reach the end of one call, we may reach the end of the one below
 // it, and the one below that, and so on
 while (running_at(rr) >= steps(rr).size()) {