about summary refs log tree commit diff stats
path: root/shell/read.mu
diff options
context:
space:
mode:
Diffstat (limited to 'shell/read.mu')
-rw-r--r--shell/read.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/read.mu b/shell/read.mu
index f883be21..3804c9e4 100644
--- a/shell/read.mu
+++ b/shell/read.mu
@@ -1,8 +1,8 @@
 fn read-cell in: (addr gap-buffer), out: (addr handle cell), trace: (addr trace) {
   # TODO: we may be able to generate tokens lazily and drop this stream.
   # Depends on how we implement indent-sensitivity and infix.
-  var tokens-storage: (stream cell 0x400)
-  var tokens/ecx: (addr stream cell) <- address tokens-storage
+  var tokens-storage: (stream token 0x400)
+  var tokens/ecx: (addr stream token) <- address tokens-storage
   tokenize in, tokens, trace
   var error?/eax: boolean <- has-errors? trace
   compare error?, 0/false