diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-07 19:16:19 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-07 19:16:19 -0700 |
commit | 1ea1bd9c26c25d50c5d80c7bad482895700da53f (patch) | |
tree | ea0e906689dea094e5308e4209e3cc19d01bd72d | |
parent | a1dcc02fe55e5d3d1ad43f3644df2e06dac2977d (diff) | |
download | mu-1ea1bd9c26c25d50c5d80c7bad482895700da53f.tar.gz |
1303
-rw-r--r-- | 026assert.cc | 2 | ||||
-rw-r--r-- | 039wait.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/026assert.cc b/026assert.cc index 301aec58..277ade39 100644 --- a/026assert.cc +++ b/026assert.cc @@ -12,7 +12,7 @@ Recipe_number["assert"] = ASSERT; :(before "End Primitive Recipe Implementations") case ASSERT: { assert(ingredients.size() == 2); - assert(ingredients.at(0).size() == 1); + assert(ingredients.at(0).size() == 1); // scalar if (!ingredients.at(0).at(0)) { assert(isa_literal(current_instruction().ingredients.at(1))); raise << current_instruction().ingredients.at(1).name << '\n'; diff --git a/039wait.cc b/039wait.cc index 89871022..8f1d5001 100644 --- a/039wait.cc +++ b/039wait.cc @@ -63,7 +63,7 @@ for (index_t i = 0; i < Routines.size(); ++i) { } } -//: also allow waiting on a routine +//: also allow waiting on a routine to stop running :(scenario wait_for_routine) recipe f1 [ |