about summary refs log tree commit diff stats
path: root/html/fork.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-29 15:55:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-29 15:55:05 -0700
commit9570363aec35e187e2395b1760a4b94e71580ac9 (patch)
tree5b0d9cf65b5d5a403ab29e88535ba158efb276fe /html/fork.mu.html
parentb318b7fb127a2bdf3e394b315a45d339dc738447 (diff)
downloadmu-9570363aec35e187e2395b1760a4b94e71580ac9.tar.gz
1885
Diffstat (limited to 'html/fork.mu.html')
-rw-r--r--html/fork.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/fork.mu.html b/html/fork.mu.html
index 4d6b367c..3f47e9a2 100644
--- a/html/fork.mu.html
+++ b/html/fork.mu.html
@@ -13,11 +13,11 @@
 pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
 body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 * { font-size: 1.05em; }
+.muRecipe { color: #ff8700; }
 .Constant { color: #00a0a0; }
 .Comment { color: #9090ff; }
 .Delimiter { color: #a04060; }
 .muControl { color: #c0a020; }
-.muRecipe { color: #ff8700; }
 -->
 </style>
 
@@ -34,14 +34,14 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 <span class="muRecipe">recipe</span> main [
   start-running thread2:<span class="muRecipe">recipe</span>
   <span class="Delimiter">{</span>
-    $print <span class="Constant">34:literal</span>
+    $print <span class="Constant">34</span>
     <span class="muControl">loop</span>
   <span class="Delimiter">}</span>
 ]
 
 <span class="muRecipe">recipe</span> thread2 [
   <span class="Delimiter">{</span>
-    $print <span class="Constant">35:literal</span>
+    $print <span class="Constant">35</span>
     <span class="muControl">loop</span>
   <span class="Delimiter">}</span>
 ]