about summary refs log tree commit diff stats
path: root/html/062array.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-13 20:53:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-13 20:53:41 -0700
commit83fcebf3210b638d9f8248e0007e9f0c9804980a (patch)
tree95c4855bef341e1d46eb4725b54a3eaaf6858f08 /html/062array.mu.html
parent8b9f1750c74c7d3cca99d6949a90cd61eb8e0218 (diff)
downloadmu-83fcebf3210b638d9f8248e0007e9f0c9804980a.tar.gz
1778
Diffstat (limited to 'html/062array.mu.html')
-rw-r--r--html/062array.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/062array.mu.html b/html/062array.mu.html
index 299748d7..0388b603 100644
--- a/html/062array.mu.html
+++ b/html/062array.mu.html
@@ -15,11 +15,11 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 * { font-size: 1.05em; }
 .muScenario { color: #00af00; }
 .Delimiter { color: #a04060; }
+.muRecipe { color: #ff8700; }
 .Comment { color: #9090ff; }
 .Constant { color: #00a0a0; }
 .Special { color: #ff6060; }
 .muControl { color: #c0a020; }
-.muRecipe { color: #ff8700; }
 -->
 </style>
 
@@ -46,7 +46,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 
 <span class="Comment"># create an array out of a list of scalar args</span>
 <span class="muRecipe">recipe</span> new-array [
-  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
+  <span class="Constant">new-default-space</span>
   capacity:number<span class="Special"> &lt;- </span>copy <span class="Constant">0:literal</span>
   <span class="Delimiter">{</span>
     <span class="Comment"># while read curr-value</span>