about summary refs log tree commit diff stats
path: root/html/global.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/global.mu.html
parentaf7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff)
downloadmu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/global.mu.html')
-rw-r--r--html/global.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/global.mu.html b/html/global.mu.html
index 32e227e0..2119e8b0 100644
--- a/html/global.mu.html
+++ b/html/global.mu.html
@@ -32,9 +32,9 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 
 <span class="muRecipe">def</span> main [
   <span class="Comment"># allocate 5 locations for globals</span>
-  <span class="Constant">global-space</span>:space<span class="Special"> &lt;- </span>new <span class="Constant">location:type</span>, <span class="Constant">5</span>
+  <span class="Constant">global-space</span>:space <span class="Special">&lt;-</span> new <span class="Constant">location:type</span>,<span class="Constant"> 5</span>
   <span class="Comment"># read to globals by using /space:global</span>
-  <span class="Special">1:num/space:global</span><span class="Special"> &lt;- </span>copy <span class="Constant">3</span>
+  <span class="Special">1:num/space:global</span> <span class="Special">&lt;-</span> copy<span class="Constant"> 3</span>
   foo
 ]