about summary refs log tree commit diff stats
path: root/html/mutable.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-23 19:45:36 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-23 19:56:28 -0700
commitf918675c8b11adb80a83000a3a984e4ff3bdcf1b (patch)
tree2472316e3bf536e0bad76751c5f3504d029b8215 /html/mutable.mu.html
parentaf7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff)
downloadmu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/mutable.mu.html')
-rw-r--r--html/mutable.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/mutable.mu.html b/html/mutable.mu.html
index 82c7ae10..a1c3e593 100644
--- a/html/mutable.mu.html
+++ b/html/mutable.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="muRecipe"> -&gt; </span>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>
+  *x <span class="Special">&lt;-</span> copy<span class="Constant"> 34</span>
 ]
 </pre>
 </body>