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-12-26 20:44:10 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-26 20:58:37 -0800
commit201458e3bd2f1d79a0ea0b853552e9df267e92b1 (patch)
tree0a4f13662cde7f92ae0bcf641c9733e2a0fcd6ef /html/channel.mu.html
parente35c2d6857e1ed916221faae707e3c53ff8ed042 (diff)
downloadmu-201458e3bd2f1d79a0ea0b853552e9df267e92b1.tar.gz
3713 - cross-link calls with definitions in html
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 2a485823..428e1b8b 100644
--- a/html/channel.mu.html
+++ b/html/channel.mu.html
@@ -68,7 +68,7 @@ if ('onhashchange' in window) {
 <span id="L12" class="LineNr">12 </span>    <span class="Comment"># other threads might get between these prints</span>
 <span id="L13" class="LineNr">13 </span>    $print <span class="Constant">[produce: ]</span>, n, <span class="Constant">[ </span>
 <span id="L14" class="LineNr">14 </span><span class="Constant">]</span>
-<span id="L15" class="LineNr">15 </span>    sink <span class="Special">&lt;-</span> write sink, n
+<span id="L15" class="LineNr">15 </span>    sink <span class="Special">&lt;-</span> <a href='075channel.mu.html#L66'>write</a> sink, n
 <span id="L16" class="LineNr">16 </span>    n <span class="Special">&lt;-</span> add n,<span class="Constant"> 1</span>
 <span id="L17" class="LineNr">17 </span>    <span class="muControl">loop</span>
 <span id="L18" class="LineNr">18 </span>  <span class="Delimiter">}</span>
@@ -92,7 +92,7 @@ if ('onhashchange' in window) {
 <span id="L36" class="LineNr">36 </span>
 <span id="L37" class="LineNr">37 </span><span class="muRecipe">def</span> main [
 <span id="L38" class="LineNr">38 </span>  <span class="Constant">local-scope</span>
-<span id="L39" class="LineNr">39 </span>  source:&amp;:source:char, sink:&amp;:sink:char <span class="Special">&lt;-</span> new-channel <span class="Constant">3/capacity</span>
+<span id="L39" class="LineNr">39 </span>  source:&amp;:source:char, sink:&amp;:sink:char <span class="Special">&lt;-</span> <a href='075channel.mu.html#L51'>new-channel</a> <span class="Constant">3/capacity</span>
 <span id="L40" class="LineNr">40 </span>  <span class="Comment"># create two background 'routines' that communicate by a channel</span>
 <span id="L41" class="LineNr">41 </span>  routine1:num <span class="Special">&lt;-</span> start-running producer, sink
 <span id="L42" class="LineNr">42 </span>  routine2:num <span class="Special">&lt;-</span> start-running consumer, source