about summary refs log tree commit diff stats
path: root/022arithmetic.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:46:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:46:03 -0700
commitd52406ccd9eb19be40b85a3a2a1b00e5052afb9b (patch)
tree18936281f60f84ea1ceb024b1b1580d376f765c6 /022arithmetic.cc
parent192d59d3bb9ee0baa1afd82cb5d0f352bdc6e403 (diff)
downloadmu-d52406ccd9eb19be40b85a3a2a1b00e5052afb9b.tar.gz
3381
Diffstat (limited to '022arithmetic.cc')
-rw-r--r--022arithmetic.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/022arithmetic.cc b/022arithmetic.cc
index 760aa98d..a56d2b72 100644
--- a/022arithmetic.cc
+++ b/022arithmetic.cc
@@ -57,9 +57,9 @@ def main [
 :(scenario add_checks_type)
 % Hide_errors = true;
 def main [
-  1:num <- add 2:boolean, 1
+  1:num <- add 2:bool, 1
 ]
-+error: main: 'add' requires number ingredients, but got '2:boolean'
++error: main: 'add' requires number ingredients, but got '2:bool'
 
 :(scenario add_checks_return_type)
 % Hide_errors = true;