about summary refs log tree commit diff stats
path: root/apps/tile/data.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-25 14:34:40 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-25 14:34:40 -0700
commitf37e7f33e8cf57f82181ce137ab74ec5cd28e1d9 (patch)
treedc7eeea4dffc4c77fa2741a3a20d3c338922aabf /apps/tile/data.mu
parent4dad0efa8dfe7f7ce339f7d2d7b1aa817810665d (diff)
downloadmu-f37e7f33e8cf57f82181ce137ab74ec5cd28e1d9.tar.gz
7098 - tile: string values
Strings can contain spaces.
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index 03f66bd2..3cd2337d 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -28,11 +28,7 @@ type line {
 }
 
 type word {
-  # at most one of these will be non-null
   scalar-data: (handle gap-buffer)
-  text-data: (handle array byte)
-  box-data: (handle line)  # recurse
-  #
   next: (handle word)
   prev: (handle word)
 }