about summary refs log tree commit diff stats
path: root/html/x.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
commitb301e0c0e6b54dceecbe4ee1ef8f610411015c30 (patch)
treed40803d412718221d7c92fd50c189563877b8301 /html/x.mu.html
parent805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (diff)
downloadmu-b301e0c0e6b54dceecbe4ee1ef8f610411015c30.tar.gz
4200
Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
Diffstat (limited to 'html/x.mu.html')
-rw-r--r--html/x.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/x.mu.html b/html/x.mu.html
index cbc9b7bd..022c3a6f 100644
--- a/html/x.mu.html
+++ b/html/x.mu.html
@@ -57,7 +57,7 @@ if ('onhashchange' in window) {
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr">1 </span><span class="Comment"># example program: add two numbers</span>
 <span id="L2" class="LineNr">2 </span>
-<span id="L3" class="LineNr">3 </span><span class="muRecipe">def</span> main [
+<span id="L3" class="LineNr">3 </span><span class="muRecipe">def</span> <a href='x.mu.html#L3'>main</a> [
 <span id="L4" class="LineNr">4 </span>  11:num <span class="Special">&lt;-</span> copy<span class="Constant"> 1</span>
 <span id="L5" class="LineNr">5 </span>  12:num <span class="Special">&lt;-</span> copy<span class="Constant"> 3</span>
 <span id="L6" class="LineNr">6 </span>  13:num <span class="Special">&lt;-</span> add 11:num, 12:num