about summary refs log tree commit diff stats
path: root/html
diff options
context:
space:
mode:
Diffstat (limited to 'html')
-rw-r--r--html/063array.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/063array.mu.html b/html/063array.mu.html
index b0578215..a668d466 100644
--- a/html/063array.mu.html
+++ b/html/063array.mu.html
@@ -74,7 +74,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 
 <span class="Comment"># fill an existing array with a set of numbers</span>
 <span class="Comment"># (contributed by Caleb Couch)</span>
-<span class="muRecipe">recipe</span> fill array:&amp;:@:num<span class="muRecipe"> -&gt; </span>array:&amp;:@:num [
+<span class="muRecipe">def</span> fill array:&amp;:@:num<span class="muRecipe"> -&gt; </span>array:&amp;:@:num [
   <span class="Constant">local-scope</span>
   <span class="Constant">load-ingredients</span>
   loopn:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
@@ -138,7 +138,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 
 <span class="Comment"># swap two elements of an array</span>
 <span class="Comment"># (contributed by Caleb Couch)</span>
-<span class="muRecipe">recipe</span> swap array:&amp;:@:num, index1:num, index2:num<span class="muRecipe"> -&gt; </span>array:&amp;:@:num [
+<span class="muRecipe">def</span> swap array:&amp;:@:num, index1:num, index2:num<span class="muRecipe"> -&gt; </span>array:&amp;:@:num [
   <span class="Constant">local-scope</span>
   <span class="Constant">load-ingredients</span>
   object1:num<span class="Special"> &lt;- </span>index *array, index1