about summary refs log tree commit diff stats
path: root/070table.mu
diff options
context:
space:
mode:
Diffstat (limited to '070table.mu')
-rw-r--r--070table.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/070table.mu b/070table.mu
index 4c98cf91..05741f55 100644
--- a/070table.mu
+++ b/070table.mu
@@ -16,8 +16,8 @@ scenario table-read-write [
 scenario table-read-write-non-integer [
   run [
     local-scope
-    key:address:array:character <- new [abc def]
-    {tab: (address table (address array character) number)} <- new-table 30
+    key:text <- new [abc def]
+    {tab: (address table text number)} <- new-table 30
     put-index tab, key, 34
     1:number/raw <- index tab, key
   ]