diff options
-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 [ |