about summary refs log tree commit diff stats
path: root/075channel.mu
diff options
context:
space:
mode:
Diffstat (limited to '075channel.mu')
-rw-r--r--075channel.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/075channel.mu b/075channel.mu
index 6aae8b87..ebac99a6 100644
--- a/075channel.mu
+++ b/075channel.mu
@@ -323,11 +323,11 @@ def close x:&:sink:_elem -> x:&:sink:_elem [
 #   future reads continue until the channel empties,
 #   then the channel is also closed for reading
 after <channel-write-initial> [
-  closed?:boolean <- get *chan, closed?:offset
+  closed?:bool <- get *chan, closed?:offset
   return-if closed?
 ]
 after <channel-read-empty> [
-  closed?:boolean <- get *chan, closed?:offset
+  closed?:bool <- get *chan, closed?:offset
   {
     break-unless closed?
     empty-result:&:_elem <- new _elem:type