about summary refs log tree commit diff stats
path: root/075channel.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-12 00:06:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-12 00:38:36 -0700
commitea19d0dc2c11f48ca384fb087b4e44ef400bfaa2 (patch)
treeba204ece67397481a3104f4c7c1d6a0f3ad271f7 /075channel.mu
parentec1cd4ae38f283970a401354a1ec17823fa0b7da (diff)
downloadmu-ea19d0dc2c11f48ca384fb087b4e44ef400bfaa2.tar.gz
3337 - first use of type abbreviations: text
In the process I've uncover a couple of situations we don't support type
abbreviations yet. They're next.
Diffstat (limited to '075channel.mu')
-rw-r--r--075channel.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/075channel.mu b/075channel.mu
index f299836a..7bd371fe 100644
--- a/075channel.mu
+++ b/075channel.mu
@@ -389,7 +389,7 @@ def buffer-lines in:address:source:character, buffered-out:address:sink:characte
     }
     # copy line into 'buffered-out'
     i:number <- copy 0
-    line-contents:address:array:character <- get *line, data:offset
+    line-contents:text <- get *line, data:offset
     max:number <- get *line, length:offset
     {
       done?:boolean <- greater-or-equal i, max