about summary refs log tree commit diff stats
path: root/html/075channel.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-04-18 11:02:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-04-18 11:02:49 -0700
commitbd58d18a2308ae5b53a6f5df1e67203739396d8f (patch)
tree3c3dbb040071cd35adb2a2f7f7f795600feb46c6 /html/075channel.mu.html
parentd6ae00788a2910e16313e8d83906dd4a52cabd43 (diff)
downloadmu-bd58d18a2308ae5b53a6f5df1e67203739396d8f.tar.gz
3829
Diffstat (limited to 'html/075channel.mu.html')
-rw-r--r--html/075channel.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/075channel.mu.html b/html/075channel.mu.html
index 8b3f86f2..46c82b68 100644
--- a/html/075channel.mu.html
+++ b/html/075channel.mu.html
@@ -455,7 +455,7 @@ if ('onhashchange' in window) {
 <span id="L391" class="LineNr">391 </span>  <span class="Comment"># repeat forever</span>
 <span id="L392" class="LineNr">392 </span>  eof?:bool <span class="Special">&lt;-</span> copy <span class="Constant">0/false</span>
 <span id="L393" class="LineNr">393 </span>  <span class="Delimiter">{</span>
-<span id="L394" class="LineNr">394 </span>  <span class="Conceal">¦</span> line:&amp;:<a href='061text.mu.html#L127'>buffer</a> <span class="Special">&lt;-</span> <a href='061text.mu.html#L132'>new-buffer</a><span class="Constant"> 30</span>
+<span id="L394" class="LineNr">394 </span>  <span class="Conceal">¦</span> line:&amp;:buffer:char <span class="Special">&lt;-</span> <a href='061text.mu.html#L131'>new-buffer</a><span class="Constant"> 30</span>
 <span id="L395" class="LineNr">395 </span>  <span class="Conceal">¦</span> <span class="Comment"># read characters from 'in' until newline, copy into line</span>
 <span id="L396" class="LineNr">396 </span>  <span class="Conceal">¦</span> <span class="Delimiter">{</span>
 <span id="L397" class="LineNr">397 </span><span class="Constant">  </span><span class="Conceal">¦</span><span class="Constant"> </span><span class="Conceal">¦</span><span class="Constant"> +next-character</span>
@@ -551,14 +551,14 @@ if ('onhashchange' in window) {
 <span id="L487" class="LineNr">487 </span><span class="muRecipe">def</span> <a href='075channel.mu.html#L487'>drain</a> source:&amp;:source:char<span class="muRecipe"> -&gt; </span>result:text, source:&amp;:source:char [
 <span id="L488" class="LineNr">488 </span>  <span class="Constant">local-scope</span>
 <span id="L489" class="LineNr">489 </span>  <span class="Constant">load-ingredients</span>
-<span id="L490" class="LineNr">490 </span>  buf:&amp;:<a href='061text.mu.html#L127'>buffer</a> <span class="Special">&lt;-</span> <a href='061text.mu.html#L132'>new-buffer</a><span class="Constant"> 30</span>
+<span id="L490" class="LineNr">490 </span>  buf:&amp;:buffer:char <span class="Special">&lt;-</span> <a href='061text.mu.html#L131'>new-buffer</a><span class="Constant"> 30</span>
 <span id="L491" class="LineNr">491 </span>  <span class="Delimiter">{</span>
 <span id="L492" class="LineNr">492 </span>  <span class="Conceal">¦</span> c:char, done?:bool <span class="Special">&lt;-</span> read source
 <span id="L493" class="LineNr">493 </span>  <span class="Conceal">¦</span> <span class="muControl">break-if</span> done?
 <span id="L494" class="LineNr">494 </span>  <span class="Conceal">¦</span> buf <span class="Special">&lt;-</span> append buf, c
 <span id="L495" class="LineNr">495 </span>  <span class="Conceal">¦</span> <span class="muControl">loop</span>
 <span id="L496" class="LineNr">496 </span>  <span class="Delimiter">}</span>
-<span id="L497" class="LineNr">497 </span>  result <span class="Special">&lt;-</span> <a href='061text.mu.html#L329'>buffer-to-array</a> buf
+<span id="L497" class="LineNr">497 </span>  result <span class="Special">&lt;-</span> <a href='061text.mu.html#L328'>buffer-to-array</a> buf
 <span id="L498" class="LineNr">498 </span>]
 </pre>
 </body>