about summary refs log tree commit diff stats
path: root/html/http-server.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-27 22:20:43 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-27 22:20:43 -0800
commit97eb971b7574b3f283d7111a567a301faec9912d (patch)
tree4a1f9d1987ca601efba78865c8b3d1766d23af92 /html/http-server.mu.html
parentdf0c0babff599b0ab85f56cd50ee0b4143f12886 (diff)
downloadmu-97eb971b7574b3f283d7111a567a301faec9912d.tar.gz
3725
More improvements to cross-linking example programs. Include their own
functions as well in the tags for each program, even as you share the
core .mu files everywhere.
Diffstat (limited to 'html/http-server.mu.html')
-rw-r--r--html/http-server.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/http-server.mu.html b/html/http-server.mu.html
index 7a42603a..ac913d62 100644
--- a/html/http-server.mu.html
+++ b/html/http-server.mu.html
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L7" class="LineNr"> 7 </span><span class="Comment"># After running it, navigate to localhost:8080. Your browser should display</span>
 <span id="L8" class="LineNr"> 8 </span><span class="Comment"># &quot;SUCCESS!&quot; and the server will terminate after one connection.</span>
 <span id="L9" class="LineNr"> 9 </span>
-<span id="L10" class="LineNr">10 </span><span class="muRecipe">def</span> main [
+<span id="L10" class="LineNr">10 </span><span class="muRecipe">def</span> <a href='http-server.mu.html#L10'>main</a> [
 <span id="L11" class="LineNr">11 </span>  <span class="Constant">local-scope</span>
 <span id="L12" class="LineNr">12 </span>  socket:num <span class="Special">&lt;-</span> $open-server-socket <span class="Constant">8080/port</span>
 <span id="L13" class="LineNr">13 </span>  $print <span class="Constant">[Mu socket creation returned ]</span>, socket, <span class="Constant">10/newline</span>