about summary refs log tree commit diff stats
path: root/026assert.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-07 19:16:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-07 19:16:19 -0700
commit1ea1bd9c26c25d50c5d80c7bad482895700da53f (patch)
treeea0e906689dea094e5308e4209e3cc19d01bd72d /026assert.cc
parenta1dcc02fe55e5d3d1ad43f3644df2e06dac2977d (diff)
downloadmu-1ea1bd9c26c25d50c5d80c7bad482895700da53f.tar.gz
1303
Diffstat (limited to '026assert.cc')
-rw-r--r--026assert.cc2
1 files changed, 1 insertions, 1 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';