about summary refs log tree commit diff stats
path: root/html/070table.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/070table.mu.html')
-rw-r--r--html/070table.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/070table.mu.html b/html/070table.mu.html
index baa33458..6292dd74 100644
--- a/html/070table.mu.html
+++ b/html/070table.mu.html
@@ -50,8 +50,8 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 <span class="muScenario">scenario</span> table-read-write-non-integer [
   run [
     <span class="Constant">local-scope</span>
-    key:address:array:character<span class="Special"> &lt;- </span>new <span class="Constant">[abc def]</span>
-    <span class="Delimiter">{</span>tab: (address table (address array character) number)<span class="Delimiter">}</span><span class="Special"> &lt;- </span>new-table <span class="Constant">30</span>
+    key:text<span class="Special"> &lt;- </span>new <span class="Constant">[abc def]</span>
+    <span class="Delimiter">{</span>tab: (address table text number)<span class="Delimiter">}</span><span class="Special"> &lt;- </span>new-table <span class="Constant">30</span>
     put-index tab, key, <span class="Constant">34</span>
     <span class="Constant">1</span>:number/<span class="Special">raw &lt;- </span>index tab, key
   ]