about summary refs log tree commit diff stats
path: root/027call_ingredient.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 /027call_ingredient.cc
parent192d59d3bb9ee0baa1afd82cb5d0f352bdc6e403 (diff)
downloadmu-d52406ccd9eb19be40b85a3a2a1b00e5052afb9b.tar.gz
3381
Diffstat (limited to '027call_ingredient.cc')
-rw-r--r--027call_ingredient.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/027call_ingredient.cc b/027call_ingredient.cc
index dd44fe36..20dc3a36 100644
--- a/027call_ingredient.cc
+++ b/027call_ingredient.cc
@@ -101,9 +101,9 @@ def main [
 ]
 def f [
   12:num <- next-ingredient  # consume ingredient
-  _, 1:boolean <- next-ingredient  # will not find any ingredients
+  _, 1:bool <- next-ingredient  # will not find any ingredients
   rewind-ingredients
-  13:num, 2:boolean <- next-ingredient  # will find ingredient again
+  13:num, 2:bool <- next-ingredient  # will find ingredient again
 ]
 +mem: storing 2 in location 12
 +mem: storing 0 in location 1
@@ -130,7 +130,7 @@ def main [
 ]
 def f [
   12:num <- ingredient 1  # consume second ingredient first
-  13:num, 1:boolean <- next-ingredient  # next-ingredient tries to scan past that
+  13:num, 1:bool <- next-ingredient  # next-ingredient tries to scan past that
 ]
 +mem: storing 2 in location 12
 +mem: storing 0 in location 1