about summary refs log tree commit diff stats
path: root/038scheduler.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-08-19 22:13:15 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-08-19 22:13:15 -0700
commit0a2026a6bdb43568422f368846130685b46a8074 (patch)
tree64d59aafedcaa234ea539c2ba4dd9e77311fbbee /038scheduler.cc
parentcecb1b1b6b317425d6ff50a9a728c83e7f6f3b10 (diff)
downloadmu-0a2026a6bdb43568422f368846130685b46a8074.tar.gz
2039 - warn on unbalanced '['
Diffstat (limited to '038scheduler.cc')
-rw-r--r--038scheduler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/038scheduler.cc b/038scheduler.cc
index dc4d56f1..1b68682d 100644
--- a/038scheduler.cc
+++ b/038scheduler.cc
@@ -212,8 +212,8 @@ recipe f2 [
 //: this scenario will require some careful setup in escaped C++
 //: (straining our tangle capabilities to near-breaking point)
 :(scenario scheduler_skips_completed_routines)
-% recipe_ordinal f1 = load("recipe f1 [\n1:number <- copy 0\n]").front();
-% recipe_ordinal f2 = load("recipe f2 [\n2:number <- copy 0\n]").front();
+% recipe_ordinal f1 = load("recipe f1 [\n1:number <- copy 0\n]\n").front();
+% recipe_ordinal f2 = load("recipe f2 [\n2:number <- copy 0\n]\n").front();
 % Routines.push_back(new routine(f1));  // f1 meant to run
 % Routines.push_back(new routine(f2));
 % Routines.back()->state = COMPLETED;  // f2 not meant to run