about summary refs log tree commit diff stats
path: root/apps/tile/data.mu
diff options
context:
space:
mode:
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
 }