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-09-26 21:30:04 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-26 21:30:04 -0700
commit65e6633b79e97fdbaab37a47b8246d2726ae5907 (patch)
tree5b14c9bba50ffd1cda06afc29d193a7be7b81125 /apps/tile/data.mu
parent5babe16f2d4a8e51f6ffc8acd02bafe47d510ad0 (diff)
downloadmu-65e6633b79e97fdbaab37a47b8246d2726ae5907.tar.gz
6869
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index 3319003b..31c9aa16 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -41,16 +41,16 @@ type value {
   box-data: (handle line)
 }
 
-type bind {
-  key: (handle array byte)
-  value: value
-}
-
 type table {
   data: (handle array bind)
   next: (handle table)
 }
 
+type bind {
+  key: (handle array byte)
+  value: value
+}
+
 type result {
   data: value-stack
   error: (handle array byte)  # single error message for now