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-26 21:01:42 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-26 21:01:42 -0700
commit14a41f4a27dee7f4b149090ae93e04184c39393b (patch)
tree996517d2177261aab597a8b3e7e5d94970cd827c /apps/tile/data.mu
parent16a31669e3ef87e518935c2f122a22beffd2bd2d (diff)
downloadmu-14a41f4a27dee7f4b149090ae93e04184c39393b.tar.gz
7112 - tile: arrays of non-integers
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index 8a23fea9..b1ed4083 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -37,7 +37,7 @@ type value {
   type: int
   int-data: int  # if type = 0
   text-data: (handle array byte)  # if type = 1
-  array-data: (handle array int)  # if type = 2
+  array-data: (handle array value)  # if type = 2
   file-data: (handle buffered-file)  # if type = 3
 }