about summary refs log tree commit diff stats
path: root/072channel.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-04-27 18:35:47 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-04-27 18:35:47 -0700
commitb1ddb414006352b2d3af3652263a536acbd2702e (patch)
tree6b568a93151f0fdb83148b73605a017b9684fbff /072channel.mu
parente32a6a02ee6a14cd85c715979503a58b0d661085 (diff)
downloadmu-b1ddb414006352b2d3af3652263a536acbd2702e.tar.gz
2879 - allow extending shape-shifting containers
Diffstat (limited to '072channel.mu')
-rw-r--r--072channel.mu3
1 files changed, 1 insertions, 2 deletions
diff --git a/072channel.mu b/072channel.mu
index 8565cd34..993581ab 100644
--- a/072channel.mu
+++ b/072channel.mu
@@ -256,8 +256,7 @@ scenario channel-read-not-full [
 
 # every channel comes with a boolean signifying if it's been closed
 # initially this boolean is false
-# todo: can't yet include type ingredients when extending containers
-container channel [
+container channel:_elem [
   closed?:boolean
 ]