about summary refs log tree commit diff stats
path: root/html/channel.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-09 00:24:24 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-09 00:24:24 -0700
commitb4d5b58959f9d416976910609f46733ee91bacb0 (patch)
tree3293be48d95f44481ae2b0cf151099ccf112898f /html/channel.mu.html
parentceeb92d470c29613f6a036f9c2077126ecc09b47 (diff)
downloadmu-b4d5b58959f9d416976910609f46733ee91bacb0.tar.gz
3491
Update the html, proving that commit 3490 worked. The only changes are
from other recent commits.
Diffstat (limited to 'html/channel.mu.html')
-rw-r--r--html/channel.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/channel.mu.html b/html/channel.mu.html
index 0e0bdffb..3970a8c2 100644
--- a/html/channel.mu.html
+++ b/html/channel.mu.html
@@ -39,7 +39,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
   <span class="Comment"># n = 0</span>
   n:char<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
   <span class="Delimiter">{</span>
-    done?:boolean<span class="Special"> &lt;- </span>lesser-than n, <span class="Constant">5</span>
+    done?:bool<span class="Special"> &lt;- </span>lesser-than n, <span class="Constant">5</span>
     <span class="muControl">break-unless</span> done?
     <span class="Comment"># other threads might get between these prints</span>
     $print <span class="Constant">[produce: ]</span>, n, <span class="Constant">[ </span>
@@ -57,7 +57,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
   <span class="Constant">load-ingredients</span>
   <span class="Delimiter">{</span>
     <span class="Comment"># read an integer from the channel</span>
-    n:char, eof?:boolean, source<span class="Special"> &lt;- </span>read source
+    n:char, eof?:bool, source<span class="Special"> &lt;- </span>read source
     <span class="muControl">break-if</span> eof?
     <span class="Comment"># other threads might get between these prints</span>
     $print <span class="Constant">[consume: ]</span>, n:char, <span class="Constant">[ </span>