about summary refs log tree commit diff stats
path: root/html/http-client.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/http-client.mu.html
parente35c2d6857e1ed916221faae707e3c53ff8ed042 (diff)
downloadmu-201458e3bd2f1d79a0ea0b853552e9df267e92b1.tar.gz
3713 - cross-link calls with definitions in html
Diffstat (limited to 'html/http-client.mu.html')
-rw-r--r--html/http-client.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/http-client.mu.html b/html/http-client.mu.html
index 687790fa..cd71e1ac 100644
--- a/html/http-client.mu.html
+++ b/html/http-client.mu.html
@@ -58,9 +58,9 @@ if ('onhashchange' in window) {
 <span id="L2" class="LineNr"> 2 </span>
 <span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> main [
 <span id="L4" class="LineNr"> 4 </span>  <span class="Constant">local-scope</span>
-<span id="L5" class="LineNr"> 5 </span>  google:&amp;:source:char <span class="Special">&lt;-</span> start-reading-from-network <span class="Constant">0/real-resources</span>, <span class="Constant">[google.com/]</span>
+<span id="L5" class="LineNr"> 5 </span>  google:&amp;:source:char <span class="Special">&lt;-</span> <a href='092socket.mu.html#L69'>start-reading-from-network</a> <span class="Constant">0/real-resources</span>, <span class="Constant">[google.com/]</span>
 <span id="L6" class="LineNr"> 6 </span>  n:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
-<span id="L7" class="LineNr"> 7 </span>  buf:&amp;:buffer <span class="Special">&lt;-</span> new-buffer<span class="Constant"> 30</span>
+<span id="L7" class="LineNr"> 7 </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="L8" class="LineNr"> 8 </span>  <span class="Delimiter">{</span>
 <span id="L9" class="LineNr"> 9 </span>    c:char, done?:bool <span class="Special">&lt;-</span> read google
 <span id="L10" class="LineNr">10 </span>    <span class="muControl">break-if</span> done?
@@ -68,7 +68,7 @@ if ('onhashchange' in window) {
 <span id="L12" class="LineNr">12 </span>    buf <span class="Special">&lt;-</span> append buf, c
 <span id="L13" class="LineNr">13 </span>    <span class="muControl">loop</span>
 <span id="L14" class="LineNr">14 </span>  <span class="Delimiter">}</span>
-<span id="L15" class="LineNr">15 </span>  result:text <span class="Special">&lt;-</span> buffer-to-array buf
+<span id="L15" class="LineNr">15 </span>  result:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L329'>buffer-to-array</a> buf
 <span id="L16" class="LineNr">16 </span>  open-console
 <span id="L17" class="LineNr">17 </span>  len:num <span class="Special">&lt;-</span> length *result
 <span id="L18" class="LineNr">18 </span>  print <span class="Constant">0/real-screen</span>, result