about summary refs log tree commit diff stats
path: root/html/http-server.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/http-server.mu.html
parentaf7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff)
downloadmu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/http-server.mu.html')
-rw-r--r--html/http-server.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/http-server.mu.html b/html/http-server.mu.html
index cdc4d661..97220e9b 100644
--- a/html/http-server.mu.html
+++ b/html/http-server.mu.html
@@ -40,13 +40,13 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 
 <span class="muRecipe">def</span> main [
   <span class="Constant">local-scope</span>
-  socket:num<span class="Special"> &lt;- </span>$open-server-socket <span class="Constant">8080/port</span>
+  socket:num <span class="Special">&lt;-</span> $open-server-socket <span class="Constant">8080/port</span>
   $print <span class="Constant">[Mu socket creation returned ]</span>, socket, <span class="Constant">10/newline</span>
   <span class="muControl">return-unless</span> socket
-  session:num<span class="Special"> &lt;- </span>$accept socket
-  contents:&amp;:source:char, sink:&amp;:sink:char<span class="Special"> &lt;- </span>new-channel <span class="Constant">30</span>
-  sink<span class="Special"> &lt;- </span>start-running receive-from-socket session, sink
-  query:text<span class="Special"> &lt;- </span>drain contents
+  session:num <span class="Special">&lt;-</span> $accept socket
+  contents:&amp;:source:char, sink:&amp;:sink:char <span class="Special">&lt;-</span> new-channel<span class="Constant"> 30</span>
+  sink <span class="Special">&lt;-</span> start-running receive-from-socket session, sink
+  query:text <span class="Special">&lt;-</span> drain contents
   $print <span class="Constant">[Done reading from socket.]</span>, <span class="Constant">10/newline</span>
   write-to-socket session, <span class="Constant">[HTTP/1.0 200 OK</span>
 <span class="Constant">Content-type: text/plain</span>