about summary refs log tree commit diff stats
path: root/html/immutable-error.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/immutable-error.mu.html')
-rw-r--r--html/immutable-error.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/immutable-error.mu.html b/html/immutable-error.mu.html
index 93afe020..8c26fbb3 100644
--- a/html/immutable-error.mu.html
+++ b/html/immutable-error.mu.html
@@ -32,14 +32,14 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 
 <span class="muRecipe">def</span> main [
   <span class="Constant">local-scope</span>
-  x:&amp;:num<span class="Special"> &lt;- </span>new <span class="Constant">number:type</span>
+  x:&amp;:num <span class="Special">&lt;-</span> new <span class="Constant">number:type</span>
   foo x
 ]
 
 <span class="muRecipe">def</span> foo x:&amp;:num [
   <span class="Constant">local-scope</span>
   <span class="Constant">load-ingredients</span>
-  *x<span class="Special"> &lt;- </span>copy <span class="Constant">34</span>  <span class="Comment"># will cause an error because x is immutable in this function</span>
+  *x <span class="Special">&lt;-</span> copy<span class="Constant"> 34</span>  <span class="Comment"># will cause an error because x is immutable in this function</span>
 ]
 </pre>
 </body>